Transaction Details

@if($transaction->status === App\Models\Transaction::STATUS_PENDING)

Transaction Pending

Your transaction is being processed.

@elseif($transaction->status === App\Models\Transaction::STATUS_COMPLETED)

Transaction Successful!

Your funds have been sent successfully.

@elseif($transaction->status === App\Models\Transaction::STATUS_FAILED)

Transaction Failed

There was an issue processing your transaction.

@else

Transaction Status Unknown

Please contact support for more information.

@endif
Amount Sent {{ rtrim(sprintf('%.8f', $transaction->amount_out), '0') }} {{ strtoupper(explode('_', $transaction->which_crypto)[0]) }}
Recipient Address {{ shorten_string($transaction->metadata['external_address'] ?? 'N/A') }}
Network Fee {{ $transaction->metadata['network_fee'] > 0 ? shorten_string(rtrim(sprintf('%.8f', $transaction->metadata['network_fee']), '0') . ' ' . strtoupper(explode('_', $transaction->which_crypto)[0])) : 'Free' }}
Total Amount {{ shorten_string(rtrim(sprintf('%.8f', $transaction->amount_out + $transaction->metadata['network_fee']), '0') . ' ' . strtoupper(explode('_', $transaction->which_crypto)[0])) }}
Date {{ $transaction->created_at->format('M d, Y H:i:s') }}
Transaction Hash {{ shorten_string($transaction->metadata['transaction_hash'] ?? 'N/A') }}