@extends( ($theme =="white") ? 'layouts.white_theme': ( ($theme =="red") ? 'layouts.red_theme': (($theme =="green") ? 'layouts.green_theme': (($theme =="black") ? 'layouts.black_theme': ( ($theme =="blue") ?'layouts.blue_theme': 'layouts.yellow_theme' )))) ) @section('content')

{{ __('Dashboard') }}

@if (($imap_enables->value) == '1')

{{ __('Web Tickets') }}

@endif

{{ __('Response Time') }}

{{ $dashboard['webTicketLife'] }} {{ __('min') }}
@if (($imap_enables->value) == '1')

{{ __('Email Tickets') }}

{{ __('Response Time') }}

{{ $dashboard['mailTicketLife'] }} {{ __('min') }}
@endif

{{ __('Ticket Rating') }}

{{ round($ticket_rating, 1) }} {{'/'}}{{'5'}}

{{ __('Week Status') }}

{{ __('Tickets By Status') }}

@include('common.demo') @include('common.errors')

{{ __('Latest Tickets') }}

{{ __('See All') }}
@if (!count($dashboard['tickets']))

{{ __('No tickets found') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

{{ __('Create new One') }}
@else @foreach ($dashboard['tickets'] as $ticket) @if ($ticket->ticketUnread ) @if (env('APP_ENV') != 'demo') @endif @else @if (env('APP_ENV') != 'demo') @endif @endif @endforeach
{{ __('Ticket ID') }} {{ __('Subject') }} {{ __('Status') }} {{ __('Priority') }} {{ __('Department') }} {{ __('Last action') }}
#{{ ($ticket->tid) }} {{ Str::limit($ticket->title, 30) }} {{ __($ticket->ticketStatus->title) }} {{ __($ticket->ticketUrgency->name)}} {{ __($ticket->department->name) }} {{$ticket->last_touched_at->diffForHumans()}}
@method('DELETE') @csrf
#{{ ($ticket->tid) }} {{ Str::limit($ticket->title, 30) }} {{ __($ticket->ticketStatus->title) }} {{ __($ticket->ticketUrgency->name) }} {{ __($ticket->department->name) }} {{$ticket->last_touched_at->diffForHumans()}}
@method('DELETE') @csrf
@endif
@endsection