@php $columns = [ ['label' => 'Id', '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' => 'Delete', 'value' => '1', ], [ 'label' => 'Status', 'value' => '2', 'options' => [ [ 'label' => 'Active', 'value' => '1', ], [ 'label' => 'Inactive', 'value' => '0', ], ], ], ]; @endphp @foreach ($deliverycities as $key => $item) @php $actions = [ [ 'code' => 'active', 'route' => null, ], [ 'code' => 'inactive', 'route' => null, ], [ 'code' => 'delete', 'route' => route('admin.settings.delivery-city.destroy', $item->id), ], [ 'code' => 'edit', 'route' => route('admin.settings.delivery-city.edit', $item->id), ], ]; @endphp {{ $key + 1 }} {{ $item->city }} ${{ number_format($item->delivery_price, 2) }} ${{ number_format($item->min_amt_for_shipping, 2) }} @if ($item->status) Active @else In-Active @endif @endforeach