@extends('layouts.app') @section('title', 'Certificates') @section('page-title', 'Certificates') @section('breadcrumb', 'Issued certificates') @section('content')
Manage Templates →

Issue Certificate

@csrf @foreach($templates as $template) @endforeach
@if($certificates->count())
@foreach($certificates as $certificate) @endforeach
Certificate # Learner Course Issued
{{ $certificate->certificate_number }} {{ $certificate->user?->name }} {{ $certificate->course?->title ?? '—' }} {{ $certificate->issued_at?->format('M d, Y') }} Verify
{{ $certificates->links() }}
@else @endif
@endsection