@extends('layouts.app') @section('title', 'Transactions Report') @section('page-title', 'Transactions Report') @section('breadcrumb', 'Reports / Transactions') @section('content')
| Order ID | Learner | Product | Amount | Payment Mode | Payment Status | Transaction ID | Created Date |
|---|---|---|---|---|---|---|---|
| {{ $payment->order?->order_number }} | {{ $payment->user?->name }} | {{ $payment->order?->items->first()?->course?->title ?? '—' }} | ₹{{ number_format($payment->amount, 2) }} | {{ $payment->gateway }} | {{ $payment->transaction_id ?? '—' }} | {{ $payment->created_at->format('M d, Y H:i') }} |