Investment Campaign Catalog

Generated for {{ $user->full_name }} | {{ now()->format('d M, Y H:i') }}

Description

{{ $description ?? 'No description available.' }}

Active Campaigns

@if($campaigns->count()) @foreach($campaigns as $campaign) @endforeach
Campaign Title Target Amount Min Investment Max Investment Status Start Date End Date Issuer Business Name Issuer Industry
{{ $campaign->title }} {{ number_format($campaign->target_amount, 2) }} {{ number_format($campaign->min_investment, 2) }} {{ number_format($campaign->max_investment, 2) }} {{ ucfirst($campaign->status) }} {{ $campaign->start_date?->format('d M, Y') }} {{ $campaign->end_date?->format('d M, Y') }} {{ $campaign->issuerProfile->business_name ?? 'N/A' }} {{ $campaign->issuerProfile->industry ?? 'N/A' }}
@else

No active campaigns found.

@endif