@extends('backend.master') @section('content')
{{-- Mini theme tweaks (only this page) --}} {{-- Page header --}}
Payment Methods
Create
{{-- Filters --}}
@if(session('success'))
{{ session('success') }}
@endif {{-- Table --}}
@forelse($methods as $pm) @empty @endforelse
# Logo Name Slug Type Daily Min — Max Status Actions
{{ $pm->id }} @if($pm->logo) logo @else None @endif {{ $pm->name }} {{ $pm->slug }} {{ $pm->type }} {{ $pm->daily_min !== null ? number_format($pm->daily_min) : '—' }} — {{ $pm->daily_max !== null ? number_format($pm->daily_max) : '—' }} {{ $pm->is_active ? 'Active' : 'Inactive' }}
@csrf @method('PATCH')
Edit
@csrf @method('DELETE')
No data found
{{ $methods->links() }}
@endsection