@extends('layouts.app') @section('title', 'Gift Details') @section('heading', 'Gift Details') @section('subheading', $gift->item_name . ' from ' . $gift->donor_name) @section('topbar_actions') Back to Registry @endsection @section('content')
{{ $gift->item_name }}
Registered on {{ $gift->created_at->format('M d, Y') }}
{{ ucfirst($gift->status) }}
{{ $gift->donor_name }}
{{ $gift->donor_phone }}
{{ ucfirst($gift->category) }}
@if($gift->estimated_value)
TZS {{ number_format($gift->estimated_value) }}
@endif @if($gift->status === 'received')
{{ $gift->receivedBy?->full_name ?? 'System' }}
{{ $gift->received_at->format('M d, Y H:i') }}
@endif @if($gift->description)
{{ $gift->description }}
@endif
@if($gift->status === 'pledged')
@csrf @method('PATCH')
@endif
Edit Gift
Registry Stats
This gift is part of the registry for {{ $gift->event->couple_name }}.
Gift Status {{ strtoupper($gift->status) }}
@endsection