Edit File: dvantages.blade.php
@foreach ($siteAdvantages as $row) <tr> <th scope="row"><img src="{{$row->icon_path}}" width="50px" height="50px"></th> <td>{{$row->title}}</td> <td class="product-action"> <span class="edit action-edit text-primary" data-id="{{$row->id}}" data-icon_path="{{$row->icon_path}}" data-title_ar="{{$row->getTranslations('title')['ar'] ?? ''}}" data-title_en="{{$row->getTranslations('title')['en'] ?? ''}}" data-desc_ar="{{$row->getTranslations('desc')['ar'] ?? ''}}" data-desc_en="{{$row->getTranslations('desc')['en'] ?? ''}}" ><i class="feather icon-edit"></i></span> <span class="delete-row text-danger trash" data-id="{{$row->id}}"><i class="feather icon-trash"></i></span> </td> </tr> @endforeach
Back to File Manager