@extends('layouts.app') @section('title', 'Application Directory') @section('content')
@include('tenant.partials.typist-page-nav')
Live service register

Application directory

Track ownership, processing stage, fees and customer service accountability from one desk.

@foreach([ ['Active applications', $metrics['active'], 'bg-sky-100 text-sky-700'], ['Completed today', $metrics['completed_today'], 'bg-emerald-100 text-emerald-700'], ['Returned for correction', $metrics['returned'], 'bg-orange-100 text-orange-700'], ['SLA attention', $metrics['sla_risk'], 'bg-red-100 text-red-700'], ] as [$label, $value, $tone])
{{ $label }}
{{ number_format($value) }}
@endforeach
Reset
Service accountability filters
@forelse($applications as $application) @php $priorityTone = in_array($application->priority, ['urgent','vip']) ? 'bg-orange-100 text-orange-700' : ($application->priority === 'high' ? 'bg-amber-100 text-amber-700' : 'bg-slate-100 text-slate-600'); $statusTone = in_array($application->status, ['completed','delivered']) ? 'bg-emerald-100 text-emerald-700' : ($application->status === 'returned' ? 'bg-red-100 text-red-700' : 'bg-sky-100 text-sky-700'); @endphp @empty @endforelse
ReferenceCustomer & serviceCustomer attended byTypist / ownerStageStatusFeeAction
{{ $application->application_number }}{{ $application->priority }} {{ $application->customer?->full_name_en ?? 'Customer unavailable' }}{{ $application->service?->name_en ?? 'Service unavailable' }} {{ $application->attendedBy?->name ?? 'Not recorded' }}Front desk service {{ $application->typedByUser?->name ?? $application->assignedUser?->name ?? 'Unassigned' }}{{ $application->typing_started_at ? 'Started '.$application->typing_started_at->diffForHumans() : 'Not started' }} {{ $application->currentStage?->stage_name_en ?? 'Intake' }} {{ str($application->status)->replace('_',' ') }} AED {{ number_format($application->total_price ?? 0, 2) }} Open 360°
No applications match this viewClear the filters or start a new customer application.Create application
@if($applications->hasPages())
{{ $applications->links() }}
@endif
@endsection