@extends('layouts.app') @section('title', 'Transactions - EKINPAY') @section('page-title', 'Transactions Management') @section('content')
|
Order ID
|
Customer
|
Plan
|
Amount
|
Payment Type
|
Status
|
Date
|
Actions |
|---|---|---|---|---|---|---|---|
|
#{{ $order->order_id }}
@if($order->txn_id)
{{ $order->txn_id }}
@endif
|
{{ $order->name }}
{{ $order->email }}
|
{{ $order->plan_name }} | {{ $currencySymbol }}{{ number_format($order->price, 0) }} | {{ $order->payment_type ?? 'N/A' }} | @if($order->payment_status === 'completed') Completed @elseif($order->payment_status === 'pending') Pending @elseif($order->payment_status === 'failed') Failed @else {{ ucfirst($order->payment_status ?? 'Unknown') }} @endif |
{{ $order->created_at->format('M d, Y') }}
{{ $order->created_at->format('h:i A') }}
|
|
|
No transactions yet |
|||||||