@extends($activeTemplate . 'layouts.master') @section('content')
@if (count($supports) > 0)
@forelse($supports as $support) @empty @endforelse
@lang('Subject') @lang('Status') @lang('Priority') @lang('Action')
[@lang('Ticket')#{{ $support->ticket }}] {{ __($support->subject) }} @php echo $support->statusBadge; @endphp @if ($support->priority == Status::PRIORITY_LOW) @lang('Low') @elseif($support->priority == Status::PRIORITY_MEDIUM) @lang('Medium') @elseif($support->priority == Status::PRIORITY_HIGH) @lang('High') @endif
{{ __($emptyMessage) }}
{{ $supports->links() }} @else @include($activeTemplate . 'partials.empty', ['message' => 'Support ticket not found!']) @endif
@endsection