@extends('admin.layouts.app') @section('title', 'Dashboard') @section('breadcrumb')
Welcome back, {{ auth()->user()->name }} — {{ now()->format('l, d F Y') }}
No attendance marked today
Mark Now| App No. | Student | Class | Status | |
|---|---|---|---|---|
{{ $app->form_number ?? '--' }} |
{{ $app->applicant_name }}
{{ $app->contact_no }}
|
{{ $app->course . ' ' . ($app->subject ?? '—') }} | @php $statuses = [ 'step1_complete' => ['primary', 'Step 1 Completed'], 'payment_completed' => ['info', 'Payment Completed'], 'submitted' => ['warning', 'Document Submitted'], 'application_selected' => ['success', 'Shortlisted'], 'verified' => ['secondary', 'Admitted'], ]; [$badgeClass, $label] = $statuses[$app->status] ?? [ 'dark', ucfirst(str_replace('_', ' ', $app->status)), ]; @endphp {{ $label }} | View |