@extends('backend.master') @section('content')

Payment Method Details

@if($pm->logo) @else
@endif
{{ $pm->name }}
Slug: {{ $pm->slug }}

Type
{{ $pm->type }}
Account No
{{ $pm->account_no ?? '—' }}
Daily Limits
{{ $pm->daily_min !== null ? number_format($pm->daily_min) : '—' }} — {{ $pm->daily_max !== null ? number_format($pm->daily_max) : '—' }}
Status
{{ $pm->is_active ? 'Active' : 'Inactive' }}
Meta
{{ json_encode($pm->meta, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES) }}
Edit
@csrf @method('DELETE')
@endsection