@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')

{{ __('Tickets') }}

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

{{ __('List of Tickets') }}

route('id')) }} method="get"> @csrf
@if (Auth::check() && Auth::user()->role != 'user')
@endif
@if (!count($tickets))

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

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

@else @foreach ($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) }} @if (count($ticket->tags))
@foreach ($ticket->tags as $tag) {{$tag->name}} @endforeach @endif
{{ __($ticket->ticketStatus->title) }} {{ __($ticket->ticketUrgency->name) }} {{__($ticket->department->name)}} {{$ticket->last_touched_at->diffForHumans()}}
@method('DELETE') @csrf
#{{ ($ticket->tid) }} {{ Str::limit($ticket->title, 30) }} @if (count($ticket->tags))
@foreach ($ticket->tags as $tag) {{$tag->name}} @endforeach @endif
{{ __($ticket->ticketStatus->title) }} {{ __($ticket->ticketUrgency->name) }} {{__($ticket->department->name)}} {{$ticket->last_touched_at->diffForHumans()}} @if (Auth::check() && Auth::user()->role == 'admin') @endif
@method('DELETE') @csrf

{{ $tickets->appends($request->all())->links("pagination::bootstrap-4") }}
@endif
@endsection