{{ __('Asset Management') }}

Portfolio Summary

Total Value

${{ number_format($portfolio['total_value'] / 100, 2) }}

{{ $portfolio['change'] >= 0 ? '+' : '' }}${{ number_format(abs($portfolio['change']) / 100, 2) }} ({{ $portfolio['change_percent'] >= 0 ? '+' : '' }}{{ number_format($portfolio['change_percent'], 2) }}%)

Assets

{{ $portfolio['asset_count'] }}

Across {{ $portfolio['currency_count'] }} currencies

24h Change

{{ $portfolio['change_percent'] >= 0 ? '+' : '' }}{{ number_format($portfolio['change_percent'], 2) }}%

Accounts

{{ $accounts->count() }}

Active accounts

Asset Allocation

@foreach($allocation as $asset)

{{ $asset['symbol'] }}

{{ $asset['name'] }}

${{ number_format($asset['value'] / 100, 2) }}

{{ number_format($asset['percentage'], 1) }}%

@endforeach

Asset Performance

@foreach($performance as $perf) @endforeach
Asset Price 24h Change 7d Change 30d Change Actions
{{ $perf['symbol'] }}
${{ number_format($perf['price'] / 100, 2) }} {{ $perf['change_24h'] >= 0 ? '+' : '' }}{{ number_format($perf['change_24h'], 2) }}% {{ $perf['change_7d'] >= 0 ? '+' : '' }}{{ number_format($perf['change_7d'], 2) }}% {{ $perf['change_30d'] >= 0 ? '+' : '' }}{{ number_format($perf['change_30d'], 2) }}% @php $asset = $availableAssets->where('symbol', $perf['symbol'])->first(); @endphp @if($asset) View Details @endif

Recent Transactions

View All →
@if($recentTransactions->count() > 0)
@foreach($recentTransactions as $transaction)
@if(str_contains($transaction['type'], 'deposit')) @elseif(str_contains($transaction['type'], 'withdraw')) @elseif(str_contains($transaction['type'], 'transfer')) @else @endif

{{ ucfirst(str_replace('_', ' ', $transaction['type'])) }}

{{ $transaction['description'] ?? 'No description' }}

{{ $transaction['amount'] >= 0 ? '+' : '' }}{{ number_format($transaction['amount'] / 100, 2) }} {{ $transaction['currency'] }}

{{ $transaction['created_at']->diffForHumans() }}

@endforeach
@else

No recent transactions

@endif