@props([ 'pageTitle' => '', 'data' => [], 'columns' => [], 'actions' => [], 'showAddButton' => false, 'addButtonUrl' => '#', 'showCheckboxes' => false, 'showBatchDelete' => false, 'showEditModal' => false, 'showViewModal' => false, 'currentPage' => 1, 'lastPage' => 1, 'total' => 0, ])
{{ $pageTitle }}
@if ($showAddButton) Add {{ $pageTitle }} @endif
@if ($showCheckboxes) @endif @foreach ($columns as $index => $column) @endforeach @if (!empty($actions)) @endif @foreach ($data as $row) @if ($showCheckboxes) @endif @foreach ($columns as $column) @endforeach @if (!empty($actions)) @endif @endforeach
{{ $column['name'] }} @if ($column['sortable']) @endif Action
{{ $row[$column['key']] ?? '' }} @if (in_array('view', $actions)) @endif @if (in_array('edit', $actions)) @endif @if (in_array('delete', $actions))
@csrf @method('DELETE')
@endif
@if ($showBatchDelete)
@csrf
@endif