@extends('layouts.app') @section('title', 'Product Sales Report') @section('page-title', 'Product Sales Report') @section('breadcrumb', 'Reports / Sales / Product Sales') @section('content')
| Product | Order | Learner | Net Amount | Discount | Coupon | Payment Status | Date |
|---|---|---|---|---|---|---|---|
| {{ $item->course?->title ?? '—' }} | {{ $item->order?->order_number }} | {{ $item->order?->user?->name }} | ₹{{ number_format($item->total, 2) }} | ₹{{ number_format($item->discount ?? 0, 2) }} | {{ $item->order?->coupon?->code ?? '—' }} | {{ $item->order?->created_at?->format('M d, Y') }} |