Merchant Details

@if($merchant->logo) {{ $merchant->business_name }} @else
{{ substr($merchant->business_name, 0, 1) }}
@endif

{{ $merchant->business_name }}

Owner: {{ $merchant->user->name }} ({{ $merchant->user->email }})

{{ $merchant->business_phone ?? 'N/A' }}

{{ $merchant->business_address ?? 'N/A' }}

{{ $merchant->business_description ?? 'N/A' }}

{{ $merchant->created_at->format('F d, Y \a\t h:i A') }}

@if($merchant->rejection_reason)

{{ $merchant->rejection_reason }}

@endif

Payment Information

{{ $merchant->subscriptionPlan?->name ?? 'N/A' }}

{{ $merchant->amount_paid ? '₦' . number_format($merchant->amount_paid, 2) : 'N/A' }}

{{ $merchant->payment_reference ?? 'N/A' }}

@if($merchant->payment_proof)
Payment proof

Click to view full size

@else

No payment proof uploaded.

@endif
@if($merchant->isPending())
@csrf

Confirm Merchant Approval

Review payment details before approving this application.

{{ $merchant->subscriptionPlan?->name ?? 'N/A' }}

{{ $merchant->amount_paid ? '₦' . number_format($merchant->amount_paid, 2) : 'N/A' }}

{{ $merchant->payment_reference ?? 'N/A' }}

{{ $merchant->subscriptionPlan?->duration_days ? $merchant->subscriptionPlan->duration_days . ' days' : 'N/A' }}

@if($merchant->payment_proof)
Payment proof

Click image to view full size

@else

No payment proof uploaded.

@endif
@csrf
@endif