@extends('admin.layout') @section('page-title', 'Hold Account Details') @section('content')

Hold Account Details

Payment Method

{{ $holdAccount->paymentMethod->name ?? 'N/A' }}

Status

{{ $holdAccount->is_active ? 'Active' : 'Inactive' }}

Balance

${{ number_format($holdAccount->balance, 2) }}

Description

{{ $holdAccount->description ?? 'N/A' }}

Created At

{{ $holdAccount->created_at->format('M d, Y H:i') }}

Last Updated

{{ $holdAccount->updated_at->format('M d, Y H:i') }}

Note: Hold accounts are automatically created when payment methods are created and deleted when payment methods are deleted.

@endsection