@extends('dashboard.user.layouts.app') @section('content')

{{ $title }}

{{-- ── SUCCESS HERO ── --}}
{{-- Icon --}}

Transfer Completed Successfully

Your funds have been processed and credited to the beneficiary account. Please find the transaction summary below for your records.

{{-- ── AMOUNT HIGHLIGHT ── --}}

Amount Transferred

{{ currency($transfer->user->currency) }}{{ formatAmount($transfer->amount) }}

{{-- ── SUMMARY SECTION LABEL ── --}}

Transaction Summary

{{-- ── DETAIL GRID ── --}}

Transaction Reference

{{ $transfer->reference_id }}

Status

{{ $transfer->status->label() }}

Beneficiary Name

{{ $transfer->recipient_name }}

Bank

{{ $transfer->recipient_bank }}

Account Number

{{ $transfer->recipient_account_number }}

Transfer Type

{{ $transfer->transfer_type->fullLabel() }}

Transaction Date

{{ formatDateTime($transfer->created_at) }}
{{-- ── ACTIONS ── --}}
@if ($transfer->transfer_type->value == 'local') New Transfer @else New Transfer @endif Share Receipt
{{-- /card-body --}}
{{-- /card --}}
@endsection