@php use Illuminate\Support\Str; @endphp

Manage payment gateway integrations

Status
@forelse ($this->paymentGateways as $gateway) @empty @endforelse
Logo Actions

{{ $gateway->name }}

{{ Str::limit($gateway->description, 50) }}

@if($gateway->logo) {{ $gateway->name }} @else No logo @endif {{ $gateway->status ? 'Active' : 'Inactive' }} {{ $gateway->created_at ? $gateway->created_at->format('M d, Y') : 'N/A' }}
No payment gateways found. Try updating the search criteria.

Showing {{ $this->paymentGateways->firstItem() ?? 0 }} to {{ $this->paymentGateways->lastItem() ?? 0 }} of {{ $this->paymentGateways->total() }} results

{{ $this->paymentGateways->links() }}

{{ $editingId ? 'Edit payment gateway' : 'Create payment gateway' }}

{{ $editingId ? 'Update payment gateway details.' : 'Add a new payment gateway integration.' }}

@error('form.name')

{{ $message }}

@enderror
@error('form.description')

{{ $message }}

@enderror
@error('logoFile')

{{ $message }}

@enderror
@if($this->logoPreview)

Preview:

Logo preview
@endif

Inactive payment gateways will not be available for use.

@error('form.status')

{{ $message }}

@enderror
@if($showImageModal && $this->logoPreview)
Logo preview
@endif