@extends('layouts.app')
@section('title', 'Transaction Detail')
@section('content')
{{ $transaction->currency === 'NGN' ? '₦' : '' }}{{ number_format($transaction->amount, $transaction->currency === 'NGN' ? 2 : 8) }} {{ $transaction->currency !== 'NGN' ? $transaction->currency : '' }}
{{ $transaction->type }} · {{ ucfirst($transaction->status) }}