@extends('layouts.admin') @section('title', 'Payment Methods') @section('page_title', 'Payment Methods') @section('content')
Add Payment Method
@forelse($paymentMethods as $method) @empty @endforelse
Name Type Description Status Actions
{{ $method->name }} {{ ucfirst(str_replace('_', ' ', $method->type)) }} {{ substr($method->description, 0, 50) }} @if($method->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
No payment methods found
{{ $paymentMethods->links() }}
@endsection