@extends('admin.layout.admin') @section('title') {{ $title }} @endsection @section('content') {{-- Alert Messages --}} @if(session('success')) @endif @if(session('error')) @endif @if($errors->any()) @endif {{-- Info Card --}}
Kelola daftar penghargaan/award yang pernah diraih. Upload gambar dengan rasio 16:9 untuk hasil terbaik.
{{-- Form Tambah Award --}}
@csrf
{{-- Name --}}
{{-- Award Date --}}
{{-- Image Upload --}}
preview
Format: JPEG, PNG, JPG, WEBP. Maksimal 5MB. Rasio 16:9 (contoh: 1920x1080)
{{-- Description --}}
{{-- Display Order --}} {{-- Status --}}
{{-- List Awards --}} @if($awards && $awards->count() > 0)
Daftar Award
@foreach($awards as $award) {{-- Edit Modal --}} @endforeach
Gambar Informasi Award Tanggal Status Aksi
{{ $award->name }}
{{ $award->name }}
@if($award->description)
{{ Str::limit($award->description, 60) }}
@endif
{{ $award->formatted_award_date }} @if($award->is_active) Aktif @else Nonaktif @endif
{{-- Toggle Active --}}
@csrf
{{-- Edit Button --}} {{-- Delete --}}
@csrf @method('DELETE')
@else

Belum ada award yang ditambahkan

@endif
@endsection @push('scripts') @endpush