@extends('layouts.app') @section('title', 'On Hold Tickets') @section('content')
View and manage all support tickets
| 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 | ||||||