@extends('layouts.vendor') @section('page-title', 'Order #' . $order->order_number) @push('styles') @endpush @section('content')
| Product | Qty | Price | Subtotal |
|---|---|---|---|
| {{ $item->product->name ?? 'Deleted' }} | {{ $item->quantity }} | {{ price($item->unit_price) }} | {{ price($item->total) }} |
| Your Earnings | {{ price($vendorTotal) }} | ||
{{ $order->customer->name }}
{{ $order->customer->email }}
{{ $order->shipping_address }}
{{ $order->shipping_city }}, {{ $order->shipping_state }} {{ $order->shipping_zip }}