service = $service; } public function mount(): void { $user = auth()->user(); // Using spatie/laravel-activitylog v5 to log dashboard access if ($user) { activity() ->causedBy($user) ->event('dashboard_access') ->log('User accessed their assigned services dashboard.'); } } #[Computed] public function services(): Collection { $user = auth()->user(); if (!$user) { return collect(); } return $this->service->getActiveServices($user); } }; ?>

Manage and access your authenticated single sign-on services.

Active Account {{ now()->format('F j, Y') }}
@if($this->services->isEmpty())

No Active Services Assigned

Your account does not currently have any active or visible services assigned by your role, or your access duration has expired.

To request access to specific applications, please contact your system administrator or IT helpdesk with your account details
@else
@foreach($this->services as $service) @if($service->is_warning) Expiring Soon @else Active @endif

{{ $service->slug }}

{{ $service->days_remaining }} {{ Str::plural('day', $service->days_remaining) }} left
@endforeach
@endif