{{-- Table Actions Dropdown Component Usage: @include('dashboard.partials.table-actions-dropdown', [ 'actions' => [ ['label' => 'View', 'icon' => 'fa-eye', 'url' => route('item.show', $item->id), 'class' => 'text-dark'], ['label' => 'Edit', 'icon' => 'fa-edit', 'url' => route('item.edit', $item->id), 'class' => 'text-primary'], ['label' => 'Delete', 'icon' => 'fa-trash', 'url' => route('item.delete', $item->id), 'class' => 'text-danger', 'confirm' => true], ] ]) --}} @php $dropdownId = 'action-dropdown-' . uniqid(); @endphp @push('scripts') @endpush