@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')
{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.
{{ __('Ticket ID') }} | {{ __('Subject') }} | {{ __('Status') }} | {{ __('Priority') }} | {{ __('Department') }} | {{ __('Last action') }} | |
---|---|---|---|---|---|---|
#{{ ($ticket->tid) }} | {{ Str::limit($ticket->subject, 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 (env('APP_ENV') != 'demo')@if (Auth::check() && Auth::user()->role == 'admin') @endif | @endif
#{{ ($ticket->tid) }} | {{ Str::limit($ticket->subject, 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 (env('APP_ENV') != 'demo')@if (Auth::check() && Auth::user()->role == 'admin') @endif | @endif