Sliders List
@php
$columns = [
['label' => 'Sl No', 'column' => 'id', 'sort' => true],
['label' => 'Name', 'column' => 'name', 'sort' => true],
['label' => 'Position', 'column' => 'position', 'sort' => true],
['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 ($sliders as $key => $item)
{{ $key + 1 }}
{{ $item->name }}
{{ $item->position }}
@if ($item->status)
Active
@else
In-Active
@endif
@endforeach
Action