@extends('layouts.admin') @section('page_kicker', 'Help desk') @section('page_title', 'Support & issues') @section('content')
Resolve open cases with an internal note.
@if($tickets instanceof \Illuminate\Pagination\AbstractPaginator){{ $ticket->subject }}
{{ $ticket->description }}
By: {{ $ticket->user->name ?? 'unknown' }} · Priority: {{ $ticket->priority }} · Status: {{ $ticket->status }}
@if($ticket->status !== 'resolved') @elseResolved: {{ $ticket->resolution_note }}
@endifSupport tickets table not available yet.
@endif