@extends('admin.layouts.master-soyuz') @section('title',__('Offline Payment Gateway')) @section('body') @component('admin.component.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('Front Setting') }} @endslot @slot('menu1') {{ __('Offline Payment Gateway') }} @endslot @slot('button')
@can('manual-payment.create') {{__("Add New")}} @endcan
@endslot @endcomponent
@if ($errors->any()) @endif
{{__("All Offline Payment Gateway")}}
@foreach($methods as $key=> $m) @can('manual-payment.edit') @endcan @can('manual-payment.delete') @endcan @endforeach
# {{__("Payment Gateway Name")}} {{__('Action')}}
{{ $key+1 }} {{ ucfirst($m->payment_name) }}
@can('manual-payment.create') @endcan @endsection @section('custom-script') @endsection