@php
$columns = [
['label' => 'Sl No', 'column' => 'id', 'sort' => true],
['label' => 'Name', 'column' => 'name', 'sort' => true],
['label' => 'Email', 'column' => 'email', 'sort' => true],
['label' => 'Actions', 'column' => 'action', 'sort' => false],
];
$bulkOptions = [
[
'label' => 'Status',
'value' => '2',
'options' => [
[
'label' => 'Active',
'value' => '1',
],
[
'label' => 'Inactive',
'value' => '0',
],
],
],
];
@endphp
@foreach ($customer as $key => $item)
|
{{ $key + 1 }} |
{{ $item->name }} |
{{ $item->email }} |
|
@endforeach