@extends('layouts.app') @section('title', $order->order_number) @section('page-title', 'Order ' . $order->order_number) @section('breadcrumb', 'Orders / Details') @section('content')
{{ $order->created_at->format('M d, Y h:i A') }}
| Course | Price | Discount | Total |
|---|---|---|---|
| {{ $item->course?->title }} | ₹{{ number_format($item->price, 2) }} | ₹{{ number_format($item->discount, 2) }} | ₹{{ number_format($item->total, 2) }} |
{{ $order->user?->name }}
{{ $order->user?->email }}
{{ $order->user?->phone }}
{{ $order->notes }}
@endif| Gateway | Amount | Status | Date | |
|---|---|---|---|---|
| {{ $payment->gateway }} | ₹{{ number_format($payment->amount, 2) }} | {{ $payment->paid_at?->format('M d, Y') ?? $payment->created_at->format('M d, Y') }} | View |