@extends('admin.layout') @section('content')
{{__('Offline Gateways')}}
@if (count($ogateways) == 0)

{{__('NO OFFLINE PAYMENT GATEWAY FOUND')}}

@else
@foreach ($ogateways as $key => $ogateway) @endforeach
{{__('Name')}} {{__('Status')}} {{__('Serial Number')}} {{__('Actions')}}
{{$ogateway->name}}
@csrf
{{$ogateway->serial_number}} {{__('Edit')}}
@csrf
@endif
@includeIf('admin.gateways.offline.create') @includeIf('admin.gateways.offline.edit') @endsection