@php use Carbon\Carbon; @endphp @extends('admin.layouts.dashboard') @section('content')
All Paid Amount
All Paid Amount
| Appointment ID | Appointment Time | Name | Phone | |
|---|---|---|---|---|
| {{ $appointment->appointment_id }} | {{ $appointment->date }} {{ $appointment->time }} | {{ $appointment->name }} | {{ $appointment->email }} | {{ $appointment->phone ?? 'NA' }} |
| Order No. | Customer Email | Phone |
|---|---|---|
| {{ $order->order_no}} | {{ $order->shipping->email }} | {{ $order->shipping->phone}} |
| No User Found |
| Order No | Order Date | Email / Mobile | Items | Amount | Status |
|---|---|---|---|---|---|
| {{ $order->order_no }} | {{ date('d/m/Y', strtotime($order->created_at)) }} | {{ $order->shipping->email }} ({{ $order->shipping->phone }}) | {{ $order->items }} | {{ $order->amount }} | Unpaid |
| User | Item | QTY | Days | Comment |
|---|---|---|---|---|
| {{ substr($request->userid->name, 0, 5) }} | {{ substr($request->orderitem->name, 0, 5) }} | {{ substr($request->orderitem->qty, 0, 5) }} | {{ substr($request->return_days, 0, 5) }} | {{ substr($request->comment, 0, 5) }} |