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