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

{{ $title }}

Request Details
User Information

Name: {{ $isolatedMarginRequest->user->name }}

Email: {{ $isolatedMarginRequest->user->email }}

Phone: {{ $isolatedMarginRequest->user->phone ?? 'N/A' }}

Currency: {{ $isolatedMarginRequest->user->currency }}

Request Information

Amount: {{ currency($isolatedMarginRequest->user->currency) . formatAmount($isolatedMarginRequest->amount) }}

Payment Method: @if ($isolatedMarginRequest->wallet) {{ $isolatedMarginRequest->wallet->name }} ({{ $isolatedMarginRequest->wallet->network }}) @else N/A @endif

Requested: {{ $isolatedMarginRequest->created_at->format('F j, Y g:i A') }}

Status: {{ $isolatedMarginRequest->status->label() }}


@if ($isolatedMarginRequest->proof)
Payment Proof
Payment Proof

@endif
@if ($isolatedMarginRequest->reviewed_at)

Reviewed At: {{ $isolatedMarginRequest->reviewed_at->format('F j, Y g:i A') }}

@endif
@if ($isolatedMarginRequest->admin_note)

Admin Note:

{{ $isolatedMarginRequest->admin_note }}
@endif
@if ($isolatedMarginRequest->isPending())
Take Action
@csrf @method('PUT')
@error('status')
{{ $message }}
@enderror
Max 500 characters @error('admin_note')
{{ $message }}
@enderror
@else
Request {{ $isolatedMarginRequest->status->label() }}

Reviewed on {{ $isolatedMarginRequest->reviewed_at->format('F j, Y g:i A') }}

@if ($isolatedMarginRequest->admin_note)
Note:
{{ $isolatedMarginRequest->admin_note }}
@endif
@endif
Quick Info

Status:
{{ $isolatedMarginRequest->status->label() }}

Amount:
{{ currency($isolatedMarginRequest->user->currency) . formatAmount($isolatedMarginRequest->amount) }}

Request ID:
{{ $isolatedMarginRequest->uuid }}

@endsection