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