Orders

Order Details

Order ID: {{$orders->id}}

Order Date: {{ $orders->created_at->format('F d, Y') }}

Order Status: {{$orders->status}}

Payment Method: {{$orders->payment_method}}

Uploaded Prescription:

Discount Proof:

Shipping Details

Courier: {{$orders->courier ?: "No courier yet"}}

Shipping Fee: {{$orders->shipping_fee ?: "No shipping fee yet"}}

Shipping Address

{{$orders->billingInformation->first_name}} {{$orders->billingInformation->middle_name}} {{$orders->billingInformation->last_name}}
{{$orders->billingInformation->email}}
{{$orders->billingInformation->phone_number}}
{{$orders->billingInformation->street_address}}
{{$orders->billingInformation->city}}, {{$orders->billingInformation->state}}
{{$orders->billingInformation->country}} - {{$orders->billingInformation->zip_code}}

Items in Order

    @foreach ($orders->orderDetails as $items)
  • {{$items->product->name}}
    {{$items->product->name}} Price: ₱{{$items->product->price}} Quantity: {{$items->quantity}} Subtotal: ₱{{$items->subtotal}}
  • @endforeach