@extends('layouts.main_dashboard.app') @section('title', $album->title) @section('page_heading', $album->title) @section('skip_page_hero', true) @section('content')

{{ $album->title }}

{{ $album->description ?: 'Certificate album with issued student certificates and downloadable records.' }}

{{ $album->title }}

Date

{{ $album->date->format('Y-m-d') }}

Issued Certificates

{{ $album->certificates->count() }}

Album ID

#{{ $album->id }}

Issued Certificates

عرض شهادات الطلاب المرتبطة بهذا الألبوم مع إمكان تنزيلها أو تعديلها.

@if($album->certificates->isEmpty())

No certificates issued yet.

يمكنك إصدار شهادة جديدة من الزر العلوي.

@else
@foreach($album->certificates as $cert) @endforeach
Student Registration No Type Date Issued Actions

{{ $cert->student->first_name }} {{ $cert->student->last_name }}

{{ $cert->student->registration_number }} {{ $cert->type === 'template' ? 'Template' : 'Uploaded' }} {{ $cert->created_at->format('Y-m-d') }}
Download Edit
@csrf @method('DELETE')
@endif
@endsection