@extends('admin.layouts.master') @section('title','Offline Payment Gateway | ') @section('body') @component('components.box',['border' => 'with-border']) @slot('header')
Offline Payment Gateway
@can('manual-payment.create')
Add New
@endcan @endslot @slot('boxBody') @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.edit') @endcan @can('manual-payment.delete') @endcan
@endslot @endcomponent @can('manual-payment.create') @endcan @endsection