{{ __('My CGO Investments') }}

@if($investments->isEmpty())

You have not made any investments yet.

@else

Your Investments

@foreach($investments as $investment) @endforeach
Date Amount Shares Tier Status Documents
{{ $investment->created_at->format('M d, Y') }} {{ $investment->currency }} {{ number_format($investment->amount, 2) }} {{ number_format($investment->shares_purchased, 4) }} {{ ucfirst($investment->tier) }} {{ ucfirst(str_replace('_', ' ', $investment->status)) }}
@if($investment->status !== 'cancelled' && $investment->status !== 'refunded') @if($investment->agreement_path) Download Agreement @else @endif @endif @if($investment->status === 'confirmed') @if($investment->certificate_path) Download Certificate @else @endif @endif
{{ $investments->links() }}

Total Invested

{{ $summary['currency'] }} {{ number_format($summary['total_invested'], 2) }}

Total Shares

{{ number_format($summary['total_shares'], 4) }}

Ownership %

{{ number_format($summary['total_ownership'], 6) }}%

@endif