@extends('layouts.admin')
@section('title', $paymentMethod->name ?? $paymentMethod->type)
@section('page_title', $paymentMethod->name ?? $paymentMethod->type)
@section('content')
| Type: |
{{ ucfirst(str_replace('_', ' ', $paymentMethod->type)) }}
|
@if($paymentMethod->name)
| Name: |
{{ $paymentMethod->name }} |
@endif
@if($paymentMethod->description)
| Description: |
{{ $paymentMethod->description }} |
@endif
| Status: |
@if($paymentMethod->is_active)
Active
@else
Inactive
@endif
|
| Created: |
{{ $paymentMethod->created_at->format('M d, Y H:i') }} |
| Updated: |
{{ $paymentMethod->updated_at->format('M d, Y H:i') }} |
@endsection