Edit File: pages.blade.php
@foreach ($apppages as $row) <tr> <th scope="row"><img src="{{$row->image_path}}" width="50px" height="50px"></th> <td class="product-action"> <span class="edit_page action-edit text-primary" data-id="{{$row->id}}" data-icon_path="{{$row->image_path}}" ><i class="feather icon-edit"></i></span> <span class="delete-row text-danger trash-page" data-id="{{$row->id}}"><i class="feather icon-trash"></i></span> </td> </tr> @endforeach
Back to File Manager