@extends('layouts.app') @section('title', 'Typist Work Queue') @section('content')

Typist & Processor Work Queue

Active applications waiting for typing, document verification, or government submission.

Application Directory
@forelse($applications as $app)
{{ $app->application_number }} {{ $app->service ? $app->service->name_en : 'Service' }}
{{ $app->priority }}
Customer Profile {{ $app->customer ? $app->customer->full_name_en : 'N/A' }} Mobile: {{ $app->customer ? $app->customer->primary_mobile : 'N/A' }}
Stage: {{ $app->currentStage ? $app->currentStage->stage_name_en : 'Start Stage' }} @if(!$app->assigned_user_id)
@csrf
@else Process Now @endif
@empty
Your processing queue is currently clear! 🎉
@endforelse
@endsection