{{-- Usage: @include('layouts.components.empty-state', [ 'icon' => 'users', 'title' => 'No employees yet', 'message' => 'Get started by adding your first employee.', 'actionUrl' => '/employees/create', 'actionLabel' => 'Add Employee', ]) --}} @php $icon = $icon ?? 'box'; $title = $title ?? 'Nothing here yet'; $message = $message ?? 'Get started by creating your first item.'; $actionUrl = $actionUrl ?? null; $actionLabel = $actionLabel ?? 'Get Started'; @endphp