{{-- resources/views/settings/payment-methods.blade.php --}} @extends('layouts.app') @section('title', 'Payment Methods') @section('page_title', 'Payment Methods') @section('page_subtitle', 'Configure accepted payment methods') @section('content') @include('settings.partials.nav')
Payment Methods
@if($methods->isEmpty())

No payment methods configured

@else
@foreach($methods as $method)
@csrf @method('PUT')
@php $icons = [ 'cash' => 'bi-cash', 'card' => 'bi-credit-card', 'bank_transfer' => 'bi-bank', 'ecocash' => 'bi-phone', 'innbucks' => 'bi-phone-fill', 'paynow' => 'bi-globe', ]; @endphp
is_active ? 'checked' : '' }}>
@csrf @method('DELETE')
@endforeach
@endif
Add Method
@csrf
@endsection