@extends('layouts.main_dashboard.app') @section('title', __('dashboard.Student Recognition')) @section('page_heading', __('dashboard.Student Recognition')) @section('page_subtitle', __('dashboard.Certificate albums description')) @section('skip_page_hero', true) @section('content')

{{ __('dashboard.Student Recognition') }}

{{ __('dashboard.Certificate albums description') }}

{{ __('dashboard.Total Albums') }}

{{ $albums->total() }}

{{ __('dashboard.Visible') }}

{{ $albums->count() }}

{{ __('dashboard.Issued Certificates') }}

{{ $albums->sum('certificates_count') }}

@if($albums->isEmpty())

{{ __('dashboard.No Albums Found') }}

{{ __('dashboard.Start by creating your first certificate album to capture issuance and attachments.') }}

@else
@foreach($albums as $album)
{{ $album->title }}

{{ $album->title }}

{{ \Illuminate\Support\Str::limit($album->description, 100) ?: __('dashboard.No description added') }}

{{ __('dashboard.Date') }}

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

{{ __('dashboard.Issued') }}

{{ $album->certificates_count }}

{{ __('dashboard.Manage Certificates') }}
@endforeach
{{ $albums->links() }}
@endif
@endsection @section('scripts') @endsection