@extends(template().'layouts.user') @section('title',trans('Support Ticket')) @section('content')

@lang("Support Tickets")

@lang("Create")
@if(count($tickets) > 0)
@forelse($tickets as $key => $ticket) @empty @endforelse
@lang('Sl') @lang('Subject') @lang('Status') @lang('Last Reply') @lang('Action')
{{ loopIndex($tickets) + $loop->index }} {{ 'Ticket#' . $ticket->ticket }} @lang($ticket->subject) @if($ticket->status == 0) @lang('Open') @elseif($ticket->status == 1) @lang('Answered') @elseif($ticket->status == 2) @lang('Replied') @elseif($ticket->status == 3) @lang('Closed') @endif {{ diffForHumans($ticket->last_reply) }}
@else
Image Description

@lang("No tickets available to display.")

@endif
@include(template(). 'user.support_ticket.components.ticket_filter'); @endsection @push('script') @endpush