@extends('layouts.app') @section('title', 'Tickets') @section('content')
Manage customer support tickets
| Ticket | Customer | Category | Priority | Status | Assigned | Created | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $ticket->ticket_number }}
{{ Str::limit($ticket->subject, 40) }}
|
{{ $ticket->customer->name ?? '-' }} | {{ $ticket->category_label }} | {{ ucfirst($ticket->priority) }} | {{ str_replace('_', ' ', ucfirst($ticket->status)) }} | {{ $ticket->assignedTo->name ?? '-' }} | {{ $ticket->created_at->diffForHumans() }} | |
| No tickets found | |||||||