@extends('layouts.main') @section('title', 'Achievements & Awards Management') @push('styles') @endpush @section('content')

🏆 Achievements & Awards

Add and manage clinical honors, certificates, and recognition awards for your practice showcase.

@if(session('success'))
{{ session('success') }}
@endif

Add New Achievement or Award

@csrf
Upload award photo, trophy picture, or certificate image (JPG, PNG, WEBP).

Existing Honors & Recognitions

Total: {{ count($achievements) }} Items
@forelse($achievements as $achievement) @php $isAward = strtolower($achievement->type ?: '') == 'award'; @endphp
@if($achievement->image) {{ $achievement->name }} @else
{{ $isAward ? '🎖️' : '🏆' }}
@endif

{{ $achievement->name }}

{{ $isAward ? 'Award' : 'Achievement' }}

{{ $achievement->description }}

@csrf @method('DELETE')
@empty
🏆

No Achievements Added Yet

Use the form above to record your first award or achievement record.

@endforelse
@endsection