{{-- Header --}}

Payment Methods

Manage accepted payment options

{{-- Main Container --}}
@foreach($paymentMethods as $method)

{{ $method->name }}

ID: #{{ $method->id }}

@csrf @method('DELETE')

Status

@if($method->is_active) Active @else Inactive @endif
@endforeach
{{-- Modals --}}

Add Payment Method

Accept new payment option

@csrf

Edit Payment Method

Update payment configuration

@csrf @method('PUT')