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

Payment Method Details

ID: {{ $paymentMethod->id }}
Name: {{ $paymentMethod->name }}
Description: @if($paymentMethod->description) {{ $paymentMethod->description }} @else No description provided @endif
Status: @if($paymentMethod->is_active) Active @else Inactive @endif
Created At: {{ $paymentMethod->created_at->format('F d, Y \a\t h:i A') }}
Updated At: {{ $paymentMethod->updated_at->format('F d, Y \a\t h:i A') }}
Quick Actions
@endsection @push('scripts') @endpush