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['symbol'] }}
{{ $asset['name'] }}
${{ number_format($asset['value'] / 100, 2) }}
{{ number_format($asset['percentage'], 1) }}%
| 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 |
{{ ucfirst(str_replace('_', ' ', $transaction['type'])) }}
{{ $transaction['description'] ?? 'No description' }}
{{ $transaction['amount'] >= 0 ? '+' : '' }}{{ number_format($transaction['amount'] / 100, 2) }} {{ $transaction['currency'] }}
{{ $transaction['created_at']->diffForHumans() }}
No recent transactions
@endif