{{ $asset->name }} ({{ $asset->symbol }})

{{ $asset->description }}

← Back to Portfolio

Current Price

${{ number_format($priceHistory[count($priceHistory)-1]['price'] / 100, 4) }}

Market Cap

${{ number_format($statistics['market_cap'] / 100000000, 2) }}M

24h Volume

${{ number_format($statistics['volume_24h'] / 100, 0) }}

Holders

{{ number_format($statistics['holders']) }}

@if(count($holdings) > 0)

Your Holdings

@php $totalBalance = 0; $totalValue = 0; @endphp @foreach($holdings as $holding) @php $totalBalance += $holding['balance']->balance; $totalValue += $holding['value_usd']; @endphp

{{ $holding['account']->name }}

Account {{ $holding['account']->type }}

{{ number_format($holding['balance']->balance / 100, 2) }} {{ $asset->symbol }}

${{ number_format($holding['value_usd'] / 100, 2) }}

@endforeach

Total Holdings

{{ number_format($totalBalance / 100, 2) }} {{ $asset->symbol }}

${{ number_format($totalValue / 100, 2) }}

@endif

Price History (30 Days)

Statistics

@if($statistics['total_supply'])

Total Supply

{{ number_format($statistics['total_supply']) }}

@endif

24h Transactions

{{ number_format($statistics['transactions_24h']) }}

Asset Type

{{ ucfirst($asset->type) }}

Status

{{ $asset->is_active ? 'Active' : 'Inactive' }}

Your {{ $asset->symbol }} Transactions

@if($transactions->count() > 0)
@foreach($transactions as $transaction) @endforeach
Date Type Description Amount Status
{{ $transaction->created_at->format('M d, Y H:i') }} {{ ucfirst(str_replace('_', ' ', $transaction->type)) }} {{ $transaction->description ?? 'No description' }} {{ $transaction->amount >= 0 ? '+' : '' }}{{ number_format($transaction->amount / 100, 2) }} {{ ucfirst($transaction->status) }}
@else

No transactions found for this asset

@endif