@extends('layouts.admin') @section('title', 'Celebration Types') @section('content')
Add New Celebration Type
@csrf
Enter Font Awesome icon class (e.g., fa-birthday-cake, fa-heart, fa-champagne-glasses)
Lower numbers appear first
Celebration Types
{{ $celebrationTypes->count() }} Types
@forelse($celebrationTypes as $type) @empty @endforelse
Order Icon Name Status Actions
{{ $type->display_order }} {{ $type->name }}
@csrf @method('PUT')
@csrf @method('DELETE')
No Celebration Types

Add your first celebration type using the form.

Preview - How it appears to customers
@foreach($celebrationTypes->where('is_active', true) as $type)
{{ $type->name }}
@endforeach
@endsection