@extends('layouts.admin') @section('title', setting('school_name', 'ShulePoint') . ' | Payment Methods') @section('page-title', 'Payment Methods') @section('content')

Payment Methods

@forelse ($methods as $method) @empty @endforelse
Name Code Status Actions
@if($method->logo) {{ $method->name }} @else {{ strtoupper(substr($method->name, 0, 1)) }} @endif {{ $method->name }}
{{ $method->code }} @if($method->is_active) Enabled @else Disabled @endif Configure
@csrf @method('PATCH')

No payment methods

Payment methods will appear here once configured.

@endsection