{{-- resources/views/dashboard/index.blade.php --}} @extends('layouts.app') @section('content')
{{ __('app.no_data_found') }}
@endunless{{ __('app.total') }} {{ __('app.employees') }}
{{ __('app.attendance') }} - {{ __('app.today') }}
{{ __('app.attendance_status.late') }} - {{ __('app.today') }}
{{ __('app.attendance_status.absent') }} - {{ __('app.today') }}
{{ __('dashboard.by') }}: {{ $activity->user?->name ?? __('dashboard.system_fallback_name') }}
{{ $activity->created_at->translatedFormat('d F Y H:i') }}{{ __('app.no_recent_activities') }}
{{ __('app.no_recent_payrolls') }}
@endif{{ __('app.no_recent_leaves') }}
@endif{{ __('app.no_recent_deductions') }}
@endif{{ __('app.no_recent_loans') }}
@endif| # | {{ __('dashboard.th_title') }} | {{ __('dashboard.th_description') }} | {{ __('dashboard.th_sender') }} | {{ __('dashboard.th_date') }} | {{ __('dashboard.th_status') }} | {{ __('dashboard.th_actions') }} |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $notification->data['title'] ?? __('app.notification_new_default_title') }} | {{ Str::limit($notification->data['message'] ?? __('app.notification_details_default'), 80) }} | @if(isset($notification->data['sender']) && $notification->data['sender'] == 'system') {{ __('dashboard.system_name') }} @else {{ $notification->notifiable?->name ?? __('dashboard.system_fallback_name') }} @endif | {{ $notification->created_at->diffForHumans() }} | @if($notification->read_at) {{ __('app.notification_read') }} @else {{ __('app.notification_unread') }} @endif | |
|
{{ __('app.no_notifications') }} |
||||||