{{-- Component for standardized table action buttons Usage: @include('components.table-actions', ['actions' => $actions]) $actions format: [ 'view' => [ 'url' => route('resource.show', $id), 'title' => 'Ver detalles', 'permission' => 'view-resource' // Optional ], 'edit' => [ 'url' => route('resource.edit', $id), 'title' => 'Editar', 'permission' => 'edit-resource' // Optional ], 'delete' => [ 'url' => route('resource.destroy', $id), 'title' => 'Eliminar', 'method' => 'DELETE', // For form submission 'confirm' => '¿Estás seguro de eliminar este registro?', 'permission' => 'delete-resource' // Optional ], 'onclick' => [ 'onclick' => 'customFunction()', 'title' => 'Custom action' ], 'custom' => [ 'icon' => 'fa-custom', 'color' => 'warning', 'url' => '#', 'title' => 'Custom Action' ] ] --}} @php // Default icon mappings $defaultIcons = [ 'view' => 'fas fa-eye', 'edit' => 'fas fa-edit', 'delete' => 'fas fa-trash', 'stats' => 'fas fa-chart-bar', 'messages' => 'fas fa-comments', 'knowledge' => 'fas fa-database', 'businesses' => 'fas fa-building', 'export' => 'fas fa-download', 'activate' => 'fas fa-toggle-on', 'deactivate' => 'fas fa-toggle-off', ]; // Default color mappings $defaultColors = [ 'view' => 'text-primary', 'edit' => 'text-success', 'delete' => 'text-danger', 'stats' => 'text-info', 'messages' => 'text-primary', 'knowledge' => 'text-info', 'businesses' => 'text-info', 'export' => 'text-warning', 'activate' => 'text-success', 'deactivate' => 'text-secondary', ]; @endphp