@extends('examples.modern-layout-v2')
@section('title', $city->name)
@section('cities', 'bg-blue-50 text-blue-700')
@section('content')
arrow_back
{{$city->name}}
({{strtoupper($city->code)}})
Detailed statistics and recent activity for {{$city->name}}
queue
{{number_format($city->queues_count)}}
Queues
call
{{number_format($city->calls_count)}}
Calls
message
{{number_format($city->messages_count)}}
Messages
location_on
{{number_format($city->locations_count)}}
Locations
Recent Queues
@forelse($recentQueues as $queue)
{{$queue->letter}}-{{$queue->number}}
{{$queue->created_at->diffForHumans()}}
{{$queue->name ?? 'N/A'}}
@empty
No recent queues
@endforelse
Recent Calls
@forelse($recentCalls as $call)
{{$call->token_letter}}-{{$call->token_number}}
{{$call->created_at->diffForHumans()}}
Called
@empty
No recent calls
@endforelse
@endsection