Why isn’t copying the file path to the clipboard in Laravel 8 working?
I have made a Media Library in Laravel 8 app which users can upload their pictures. Here is the blade that retreives information of uploaded assets in a table: <table class="table table-hover"> <tr> <th>Number</th> <th>Name</th> <th>Volume</th> <th>Suffix</th> <th>Links</th> </tr> @foreach($memes…