@extends('layouts.main') @section('title', 'Support Tickets') @section('content')
| Ticket ID | Subject | Type | Status | @if(auth()->user()->hasRole('super-admin'))User | @endifLast Activity | Actions |
|---|---|---|---|---|---|---|
| {{ $ticket->unique_id }} |
@if($ticket->type == 1)
@else
@endif
{{ Str::limit($ticket->subject, 50) }}
@if($ticket->status == 0)
New
@endif
|
{{ $ticket->type_label }} | {{ $ticket->status_label }} | @if(auth()->user()->hasRole('super-admin'))
{{ $ticket->user->name }}
{{ $ticket->user->email }} |
@endif
{{ $ticket->last_activity_at->diffForHumans() }} |
You haven't created any support tickets yet.
Create Your First Ticket @elseNo support tickets match your current filters.
@endif