@extends('layouts.app') @section('title', 'All Support Tickets') @section('content')

All Support Tickets

View and manage all support tickets

New Ticket
@forelse($tickets as $ticket) @empty @endforelse
Ticket # Subject Client Priority Status Updated Actions
{{ $ticket->ticket_number }} {{ $ticket->subject }} {{ $ticket->user->name }} @if($ticket->priority === 'high') High @elseif($ticket->priority === 'medium') Medium @else Low @endif @if($ticket->status === 'open') Open @elseif($ticket->status === 'closed') Closed @else {{ ucwords(str_replace('-', ' ', $ticket->status)) }} @endif {{ $ticket->updated_at->diffForHumans() }} View
No tickets found
@if($tickets->hasPages())
{{ $tickets->links() }}
@endif
@endsection