@extends('layouts.app')
@section('title', 'Transaction History')
@section('content')
{{ $tx->type }} @if($tx->asset_symbol) {{ $tx->asset_symbol }} @endif
{{ $tx->created_at->format('d M Y, H:i') }} · {{ ucfirst($tx->status) }}
{{ in_array($tx->type, ['deposit', 'sell']) ? '+' : '-' }}{{ $tx->currency === 'NGN' ? '₦' : '' }}{{ number_format($tx->amount, $tx->currency === 'NGN' ? 2 : 8) }} {{ $tx->currency !== 'NGN' ? $tx->currency : '' }}
@emptyNo transactions match your filters.
@endforelse