@extends('admin.dashboard.layout.app') @section('style') @endsection @section('content') @include('admin.dashboard.layout.header', ['title' => 'Payment Methods'])
@csrf
@error('provider')
{{ $message }}
@enderror
@error('method')
{{ $message }}
@enderror
@foreach ($paymentMethods as $index => $pm) @endforeach
Sr # Provider Method Type Status Action
{{ $index + 1 }} {{ $pm->provider }} {{ $pm->method }} {{ $pm->type }} @if ($pm->status == 0) Inactive @elseif ($pm->status == 1) Active @endif
@endsection @section('script') @endsection