{{-- resources/views/client/tickets/index.blade.php --}} @extends('client.layouts.client') @section('title','Support Tickets') @section('page-title','Support Tickets') @section('client-content')
{{-- Ticket list --}}
@if($tickets->count())
@foreach($tickets as $t)
#{{ $t->id }} · {{ $t->subject }}
{{ ucfirst($t->status) }} {{ ucfirst($t->priority) }} @if($t->category){{ ucfirst($t->category) }}@endif {{ $t->replies->count() }} {{ $t->replies->count()==1?'reply':'replies' }}
{{ $t->created_at->diffForHumans() }}
@endforeach
{{ $tickets->links() }} @else

No tickets yet

Having an issue? Open a support ticket and we'll respond within 24 hours.

@endif
{{-- New ticket form --}}

Open New Ticket

@csrf
@endsection