@extends('examples.modern-layout-v2') @section('title', 'Dashboard') @section('dashboard', 'bg-blue-50 text-blue-700') @section('content')

{{__('messages.dashboard.dashboard')}}

{{__('messages.dashboard.welcome_message')}}

@if(isset($isSuperAdmin) && $isSuperAdmin && $hasNoLicense === true)
error_outline
{{__('messages.errors.no_license_configured')}}

{{__('messages.errors.no_license_configured_description')}}

@elseif($isTrialLicense || !$isLicenseValid)
@if(!$isLicenseValid && isset($licenseStatus['status']) && $licenseStatus['status'] === 'expired')
error_outline
{{__('messages.errors.license_expired')}}

{{__('messages.errors.license_expired_description')}}

@elseif($isTrialLicense)
warning_amber
{{__('messages.errors.trial_license_active')}}

@if($daysRemaining > 0) {{__('messages.errors.trial_license_days_remaining', ['days' => $daysRemaining])}} @else {{__('messages.errors.trial_license_expired')}} @endif {{__('messages.errors.trial_license_description')}}

@endif
@endif @if($isAdmin)
queue
{{__('messages.common.queue')}}

{{__('messages.dashboard.today queue')}}

{{$today_queue}}

phone_in_talk
{{__('messages.dashboard.active')}}

{{__('messages.dashboard.today serving')}}

{{$today_serving}}

check_circle
{{__('messages.dashboard.completed')}}

{{__('messages.dashboard.today served')}}

{{$today_served}}

cancel
{{__('messages.dashboard.no_show')}}

{{__('messages.dashboard.today noshow')}}

{{$today_noshow}}

{{__('messages.dashboard.today')}}

{{__('messages.dashboard.token_distribution_overview')}}

pie_chart

{{__('messages.dashboard.today vs yesterday')}}

{{__('messages.dashboard.hourly_comparison')}}

show_chart
@else
dashboard

{{__('messages.dashboard.welcome')}}

{{__('messages.dashboard.call_page_redirect')}}

{{__('messages.dashboard.go_to_call_page')}} arrow_forward
@endif
@if($isAdmin) @push('scripts') @endpush @endif @endsection