@extends('layouts.app') @section('title', 'Admin Dashboard') @section('content')

Admin Dashboard

Total Tickets

{{ $stats['total_tickets'] }}

Open Tickets

{{ $stats['open_tickets'] }}

In Progress

{{ $stats['in_progress_tickets'] }}

Closed

{{ $stats['closed_tickets'] }}

Recent Tickets

@foreach($recentTickets as $ticket)

{{ $ticket->subject }}

{{ ucfirst($ticket->status) }}

By: {{ $ticket->user->name }} Created: {{ $ticket->created_at->format('M d, Y H:i') }}

@endforeach
@endsection