@extends('layouts.app') @section('title', 'Event Details') @section('heading', 'Event Details') @section('subheading', $event->couple_name) @section('topbar_actions')
Back Edit Event
@endsection @section('content')
Event Overview
{{ $event->wedding_date->format('F d, Y') }}
{{ $event->days_to_go }} days to go
{{ $event->venue ?? 'Not set' }}
TZS {{ number_format($event->target_budget) }}
{{ $event->is_active ? 'Active' : 'Inactive' }}
@if($event->description)
Description
{{ $event->description }}
@endif
Financial Snapshot
Confirmed Collection TZS {{ number_format($event->total_confirmed) }}
{{ $event->progress_percent }}% of target
Pending Pledges TZS {{ number_format($event->total_pending) }}
Remaining Gap TZS {{ number_format($event->target_budget - $event->total_confirmed) }}
@endsection