@extends('layouts.dashboard') @section('title', 'Support Dashboard') @section('sidebar_label', 'Support Desk') @section('sidebar') Queue Messages Knowledge base Insights @endsection @section('content') @php $tickets = [ ['subject' => 'Medication refill guidance', 'from' => 'Ananya', 'priority' => 'High', 'status' => 'Waiting', 'channel' => 'Email'], ['subject' => 'Help joining support group', 'from' => 'Ravi', 'priority' => 'Normal', 'status' => 'In progress', 'channel' => 'Chat'], ['subject' => 'Upload lab reports', 'from' => 'Meera', 'priority' => 'Low', 'status' => 'Waiting', 'channel' => 'Portal'], ]; $articles = [ ['title' => 'Flare-up first steps', 'updated' => 'Updated 2d ago'], ['title' => 'How to prepare for MRI', 'updated' => 'Updated 1w ago'], ['title' => 'Financial assistance options', 'updated' => 'Updated 3w ago'], ]; @endphp

Support desk

Hi {{ auth()->user()?->name ?? 'Support' }}

Manage conversations, SLAs, and quick answers.

New Task

Open tickets

14

-3 vs yesterday

First response

06m

Avg response time

SLA due soon

04

Within 30 mins

Quality

96% satisfaction

Keep templated replies up to date.

Live queue

Auto-sorted by priority

Real-time
@foreach ($tickets as $ticket)

{{ $ticket['subject'] }}

{{ $ticket['from'] }} • {{ $ticket['channel'] }}

{{ $ticket['priority'] }} {{ $ticket['status'] }}
@endforeach

Macros

  • Welcome & verification
  • Medication refill guidance
  • Escalate to clinical team

Knowledge base

@foreach ($articles as $article)

{{ $article['title'] }}

{{ $article['updated'] }}

@endforeach

Quality bar

SLA tracker

Monitor response and resolution times.

75% within target

@include('partials.dashboard-events')
@endsection