{{ __('Employees') }} {{ __('Manage your team members and their access') }}
{{ __('Export') }} {{ __('Excel') }} {{ __('PDF') }} {{ __('Add Employee') }}
@if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif
{{ __('All Employees') }} {{ __('Active Only') }} {{ __('Banned Only') }}
@if($employees->count() > 0)
@foreach($employees as $employee)
{{ $employee->first_name }} {{ $employee->last_name }}
{{ $employee->email }}
@if($employee->is_banned) {{ __('Banned') }} @else {{ __('Active') }} @endif
@if($employee->phone_number)
{{ $employee->phone_number }}
@endif
{{ __('Shifts') }} {{ __('Edit') }} @if($employee->is_banned) {{ __('Unban') }} @else {{ __('Ban') }} @endif {{ __('Delete') }}
@endforeach
@if($employees->hasPages())
{{ $employees->links() }}
@endif @else

@if($search || $statusFilter !== 'all') {{ __('No employees found') }} @else {{ __('No employees yet') }} @endif

@if($search || $statusFilter !== 'all') {{ __('No employees match your current search or filter criteria. Try adjusting your filters or search terms.') }} @else {{ __('Get started by adding your first employee to the system. You can manage their access and track their activity.') }} @endif

@if(!$search && $statusFilter === 'all') {{ __('Add Your First Employee') }} @endif
@endif

{{ __('Delete Employee') }}

{{ __('Are you sure you want to delete this employee? This action cannot be undone.') }}

{{ __('Cancel') }} {{ __('Delete Employee') }}

{{ __('Suspend Employee Account') }}

{{ __('This will prevent the employee from logging in. Provide a reason for the suspension.') }}

{{ __('This reason will be shown to the employee when they try to log in.') }}

{{ __('Cancel') }} {{ __('Suspend Employee') }}