@extends('layouts.app') @section('title', 'Payment Methods') @section('content')

Payment Methods

Add Payment Method
@if(session('success')) @endif @if(session('error')) @endif @if($paymentMethods->count() > 0)
@foreach($paymentMethods as $paymentMethod) @endforeach
ID Name Description Status Created At Actions
{{ $paymentMethod->id }} {{ $paymentMethod->name }} @if($paymentMethod->description) {{ Str::limit($paymentMethod->description, 50) }} @else No description @endif @if($paymentMethod->is_active) Active @else Inactive @endif {{ $paymentMethod->created_at->format('M d, Y') }}
{{ $paymentMethods->links() }}
@else

No Payment Methods Found

Start by adding your first payment method.

Add Payment Method
@endif
@endsection @push('scripts') @endpush