← Back to Initiatives List
@if($initiative->imageUrl)
@endif
@if($initiative->typeRelation || $initiative->type)
Type
{{ $initiative->typeRelation ? $initiative->typeRelation->name : ($initiative->type ?? 'N/A') }}
@endif
@if($initiative->ecosystem)
Ecosystem
{{ $initiative->ecosystem->name }}
@endif
@if($initiative->start_date)
Start Date
{{ \Carbon\Carbon::parse($initiative->start_date)->format('M d, Y') }}
@endif
End Date
{{ $initiative->end_date ? \Carbon\Carbon::parse($initiative->end_date)->format('M d, Y') : 'Ongoing' }}
@if($initiative->description)
Description
{!! nl2br(e($initiative->description)) !!}
@endif
@if($initiative->address || ($initiative->latitude && $initiative->longitude))
📍 Location
@if($initiative->address)
Address: {{ $initiative->address }}
@endif
@if($initiative->latitude && $initiative->longitude)
Coordinates
{{ $initiative->latitude }}, {{ $initiative->longitude }}
@endif
@endif