@extends('admin.layout') @section('title', 'Customer Profile: ' . $customer->fname . ' ' . $customer->lname) @section('content')
| Order ID | Amount | Status | Date | Action |
|---|---|---|---|---|
| #{{ $o->order_id }} | ₹{{ number_format((float)$o->order_price, 2) }} | {{ $o->payment_status ?? 'Pending' }} | {{ date('d M Y', strtotime($o->created_date)) }} | Details |
No orders recorded for this patient.
@endif