@extends('layout.with-main')
@section('breadcrumbs')
{{ __('staff.staff-dashboard') }}
Gateways
@endsection
@section('page', 'page__staff-donation-gateway--index')
@section('main')
| Position |
Name |
Address |
Active |
Action |
@foreach ($gateways as $gateway)
| {{ $gateway->position }} |
{{ $gateway->name }}
|
{{ $gateway->address }} |
@if ($gateway->is_active)
{{ __('common.yes') }}
@else
{{ __('common.no') }}
@endif
|
|
@endforeach
{{ $gateways->links('partials.pagination') }}
@endsection