Agent Status

Notifications Count: {{ $notifications_count }}

@foreach ($agents as $agent)

{{ $agent->name }}

Role: {{ $agent->role }}

Status: {{ $statuses[$agent->id] }}

Recent Services:

@if ($services[$agent->id]->isEmpty())

No services today.

@else
    @foreach ($services[$agent->id] as $service)
  • Service Type: {{ $service->typeService->name }}

    Car: {{ $service->car->model }}

    Date: {{ $service->date }}

    Duration: {{ $service->duration }} minutes

  • @endforeach
@endif
@endforeach