@extends('layouts.app') @section('title', 'Student Dashboard') @section('content') @include('layouts.partials.page_header', [ 'title' => 'Student Dashboard', 'showSocial' => false, 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('home')], ['label' => 'Dashboard', 'url' => ''], ], ]) @php $summaryCards = [ [ 'label' => 'Total Applications', 'value' => $stats['total'], 'note' => 'Every application started or submitted from this account.', ], [ 'label' => 'In Progress', 'value' => $stats['in_progress'], 'note' => 'Submitted, under review, or visa processing.', ], [ 'label' => 'Approved', 'value' => $stats['approved'], 'note' => 'Applications already approved by the consultancy.', ], [ 'label' => 'Documents', 'value' => $stats['documents'], 'note' => 'Supporting files available in your document vault.', ], ]; $statusLabels = [ 'draft' => 'Draft', 'submitted' => 'Submitted', 'under_review' => 'Under review', 'visa_processing' => 'Visa processing', 'approved' => 'Approved', 'rejected' => 'Rejected', ]; $badgeClasses = [ 'draft' => 'bg-light text-dark', 'submitted' => 'bg-primary', 'under_review' => 'bg-warning text-dark', 'visa_processing' => 'bg-info text-dark', 'approved' => 'bg-success', 'rejected' => 'bg-danger', ]; @endphp
@foreach($summaryCards as $card)

{{ $card['value'] }}

{{ $card['label'] }}

{{ $card['note'] }}

@endforeach
@endsection