@extends('layouts.app') @section('title', 'القبولات - كانبان') @section('content')
ADMISSION

كانبان القبولات

متابعة التقديمات حسب الحالة

@foreach ($statuses as $status) @php $count = $statusCounts[$status] ?? 0; $applications = $applicationsByStatus[$status] ?? collect(); @endphp

{{ $statusLabels[$status] ?? $status }}

{{ $count }}
@forelse ($applications as $app)

{{ $app->student_name ?? $app->name ?? '—' }}

@if ($app->phone)

{{ $app->phone }}

@endif @if ($app->email)

{{ $app->email }}

@endif
@if ($app->university)

{{ $app->university }} — {{ $app->major ?? '' }}

@endif @if ($app->passport_file ?? false) 🪪 جواز السفر @endif

{{ \Carbon\Carbon::parse($app->created_at)->format('Y-m-d') }}

@empty

لا توجد عناصر

@endforelse
@endforeach
@endsection