@php $columns = [ ['label' => 'Sl No', 'column' => 'id', 'sort' => true], ['label' => 'Name', 'column' => 'name', 'sort' => true], ['label' => 'Product Name', 'column' => 'product_name', 'sort' => true], ['label' => 'Message', 'column' => 'message', 'sort' => false], ['label' => 'Status', 'column' => 'status', 'sort' => true], ['label' => 'Actions', 'column' => 'action', 'sort' => false], ]; $bulkOptions = [ [ 'label' => 'Status', 'value' => '2', 'options' => [ [ 'label' => 'Active', 'value' => '1', ], [ 'label' => 'Inactive', 'value' => '0', ], ], ], ]; @endphp @foreach ($testinomials as $item) {{ $loop->iteration }} {{ $item->name }} {{ $item->product_name }} {{ \Illuminate\Support\Str::words($item->message, 10) }} @if ($item->status) Active @else In-Active @endif @endforeach