@extends('layouts.app') @section('title', 'Payment Methods') @section('content')

Payment Methods

@csrf
@foreach($methods as $method) @endforeach
নামNumberStatusAction
{{ $method->name }} {{ $method->receive_number }} {{ $method->is_active ? 'Active' : 'Inactive' }} @if($method->is_active)
@csrf
@endif
@endsection