@extends('admin.layouts.main') @section('title', 'Payment Methods') @section('page-title', 'Payment Methods') @section('breadcrumbs')
| # | Name | Type | Account Details | Instructions | Status | Usage | Actions |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $method['name'] }}
{{ $method['account_name'] ? 'Account: ' . $method['account_name'] : '' }} {{ $method['account_number'] ? ' | ' . $method['account_number'] : '' }} |
{{ ucfirst(str_replace('_', ' ', $method['code'])) }} |
@if($method['account_number'])
Number: {{ $method['account_number'] }} Name: {{ $method['account_name'] ?? 'N/A' }} @else No account details @endif |
@if($method['instructions']) {{ Str::limit($method['instructions'], 50) }} @else No instructions @endif | {{ $method['is_active'] ? 'Active' : 'Inactive' }} |
Total: {{ $method['total_transactions'] ?? 0 }} Success: {{ number_format($method['success_rate'] ?? 100, 1) }}% |
|
| No payment methods found | |||||||