@extends('layouts.admin') @section('title', 'Support Tickets') @section('content')
Manage customer support requests
| Ticket | Subject | Customer | Status | Priority | Category | Replies | Last Update | |
|---|---|---|---|---|---|---|---|---|
{{ $ticket->ticket_number }} |
{{ $ticket->user->name??'-' }}
{{ $ticket->user->email??'-' }}
|
@php $sc=['open'=>'b-blue','in_progress'=>'b-yellow','resolved'=>'b-green','closed'=>'b-gray']; @endphp {{ ucwords(str_replace('_',' ',$ticket->status)) }} | @php $pc=['urgent'=>'b-red','high'=>'b-orange','medium'=>'b-yellow','low'=>'b-gray']; @endphp {{ ucfirst($ticket->priority) }} | {{ ucfirst($ticket->category) }} | {{ $ticket->replies_count ?? 0 }} | {{ $ticket->last_reply_at?->diffForHumans()??$ticket->created_at->diffForHumans() }} | View | |
| No tickets found. | ||||||||