@extends('admin.layout')
@section('content')
@if (count($ogateways) == 0)
{{__('NO OFFLINE PAYMENT GATEWAY FOUND')}}
@else
{{__('Name')}} |
{{__('Status')}} |
{{__('Serial Number')}} |
{{__('Actions')}} |
@foreach ($ogateways as $key => $ogateway)
{{$ogateway->name}}
|
|
{{$ogateway->serial_number}} |
{{__('Edit')}}
|
@endforeach
@endif
@includeIf('admin.gateways.offline.create')
@includeIf('admin.gateways.offline.edit')
@endsection