@php $columns = [ ['label' => 'Sl No', 'column' => 'id', 'sort' => true], ['label' => 'City', 'column' => 'city', 'sort' => true], ['label' => 'Delivery Price', 'column' => 'delivery_price', 'sort' => true], [ 'label' => 'Minimum Delivery Price', 'column' => 'min_amt_for_shipping', 'sort' => true, ], ['label' => 'Status', 'column' => 'status', 'sort' => false], ['label' => 'Actions', 'column' => 'action', 'sort' => false], ]; $bulkOptions = [ [ 'label' => 'Status', 'value' => '2', 'options' => [ [ 'label' => 'Active', 'value' => '1', ], [ 'label' => 'Inactive', 'value' => '0', ], ], ], ]; @endphp
@csrf
To
@foreach ($deliveryCities as $key => $item) {{ $loop->iteration }} {{ $item->city }} {{ $item->delivery_price }} {{ $item->min_amt_for_shipping }} @if ($item->status) Active @else In-Active @endif @endforeach