@extends('layouts.app') @section('title', 'Events') @section('heading', 'Wedding Events') @section('subheading', 'Manage all wedding events on the platform') @section('topbar_actions') New Event @endsection @section('content')
All Events
@forelse($events as $e) @empty @endforelse
Couple Wedding Date Venue Budget Contributions Status Actions
{{ $e->couple_name }}
Created by {{ $e->creator?->full_name }}
{{ $e->wedding_date->format('M d, Y') }} {{ $e->venue ?? '—' }} {{ number_format($e->target_budget) }}
{{ $e->contributions_count }} entries
{{ $e->gifts_count }} gifts
{{ $e->is_active ? 'Active' : 'Inactive' }}
No events found.
@if($events->hasPages())
{{ $events->links() }}
@endif
@endsection