{{ $asset->description }}
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']) }}
{{ $holding['account']->name }}
Account {{ $holding['account']->type }}
{{ number_format($holding['balance']->balance / 100, 2) }} {{ $asset->symbol }}
${{ number_format($holding['value_usd'] / 100, 2) }}
Total Holdings
{{ number_format($totalBalance / 100, 2) }} {{ $asset->symbol }}
${{ number_format($totalValue / 100, 2) }}
Total Supply
{{ number_format($statistics['total_supply']) }}
24h Transactions
{{ number_format($statistics['transactions_24h']) }}
Asset Type
{{ ucfirst($asset->type) }}
Status
{{ $asset->is_active ? 'Active' : 'Inactive' }}
| 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) }} |
No transactions found for this asset
@endif