@include('partials.head')
@if(auth()->user()?->hasRole('admin'))
{{ __('Dashboard') }}
{{ __('Employees') }}
{{ __('Monitor') }}
{{ __('Overtime') }}
{{ __('Approvals') }}
{{ __('Global Settings') }}
@endif @if(!auth()->user()?->hasRole('admin'))
{{ __('My Attendance') }}
{{ __('My Schedule') }}
{{ __('My Profile') }}
{{ __('Salary History') }}
@endif
{{ auth()->user()->name }}
{{ auth()->user()->email }}
{{ __('Settings') }}
@csrf
{{ __('Log Out') }}
{{ $slot }}
@fluxScripts