@extends('admin.layouts.app')
@section('title', 'Payment Methods')
@section('content')
Payment Methods
Add Method
| Name | Number | Type | Status | Actions |
@foreach($methods as $method)
| {{ $method->name }} |
{{ $method->number }} |
{{ $method->type }} |
|
|
@endforeach
@endsection