@php $columns = [ ['label' => 'Sl No', 'column' => 'id', 'sort' => true], ['label' => 'Product Name', 'column' => 'title', 'sort' => true], ['label' => 'Title', 'column' => 'title', 'sort' => true], ['label' => 'Rating', 'column' => 'rating', 'sort' => true], ['label' => 'Status', 'column' => 'status', 'sort' => true], ['label' => 'Actions', 'column' => 'action', 'sort' => false], ]; $bulkOptions = [ [ 'label' => 'Delete', 'value' => '1', ], [ 'label' => 'Status', 'value' => '2', 'options' => [ [ 'label' => 'Active', 'value' => '1', ], [ 'label' => 'Inactive', 'value' => '0', ], ], ], ]; @endphp @foreach ($reviews as $key => $item) @php $actions = [ [ 'code' => 'view', 'route' => route('admin.reviews.show', $item->id), ], ]; @endphp {{ $key + 1 }} {{ $item->reviewable_type::find($item->reviewable_id)->title }} {{ $item->title }} {{ $item->rating }} @if ($item->status) Approved @else Pending @endif @endforeach