@extends('layouts.app') @section('title', 'Billing') @section('page-title', 'Billing Overview') @section('content')
| Order Ref | Tester | Exam | Students | Amount | Fee | Gateway | Status | Date |
|---|---|---|---|---|---|---|---|---|
| {{ $order->order_ref }} | {{ $order->tester->name }} {{ $order->tester->email }} |
{{ $order->exam?->title ?? '—' }} | {{ $order->student_count }} | ${{ number_format($order->total_amount,2) }} | ${{ number_format($order->platform_fee,2) }} | {{ ucfirst($order->gateway) }} | {{ ucfirst($order->status) }} | {{ $order->created_at->format('M j, Y') }} |
| No orders yet. | ||||||||