@php
$columns = [
['label' => 'Id', 'column' => 'id', 'sort' => true],
['label' => 'Name', 'column' => 'name', 'sort' => true],
['label' => 'Slug', 'column' => 'slug', 'sort' => true],
['label' => 'Position', 'column' => 'position', 'sort' => true],
['label' => 'Title', 'column' => 'title', 'sort' => true],
['label' => 'Actions', 'column' => 'action', 'sort' => false],
];
$bulkOptions = [
[
'label' => 'Status',
'value' => '2',
'options' => [
[
'label' => 'Active',
'value' => '1',
],
[
'label' => 'Inactive',
'value' => '0',
],
],
],
];
@endphp
@foreach ($pages as $key => $item)
|
{{ $item->id }} |
{{ $item->name }} |
{{ $item->slug }} |
{{ $item->position }} |
{{ $item->title }} |
|
@endforeach