@include('theme-views.partials._profile-aside')
@foreach($supportTickets as $key=>$supportTicket)
@if($supportTicket->status != 'close') {{ translate('Close_ticket') }} @endif
priority == 'Urgent') class="badge rounded-pill bg-danger" @elseif($supportTicket->priority == 'High') class="badge rounded-pill bg-warning" @elseif($supportTicket->priority == 'Medium') class="badge rounded-pill bg-info" @else class="badge rounded-pill bg-success" @endif > {{ $supportTicket->priority }} {{ $supportTicket->status }} {{ $supportTicket->type }}
{{ $supportTicket->subject }}
{{date('d M, Y H:i A',strtotime($supportTicket->created_at))}}
@endforeach @if($supportTickets->count()==0)
{{translate('not_found_anything')}}
@endif
{{$supportTickets->links() }}