@extends('layouts.app') @section('title', 'My Orders - Additional Design') @section('styles') @endsection @section('content')
View your standard and custom orders
| Order # | Date | Total | Status | Action |
|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('d M Y') }} | R{{ number_format($order->total, 2) }} | {{ ucfirst(str_replace('_', ' ', $order->status)) }} | View Details |
You haven't placed any standard orders yet.
Browse Products| Order # | Type | Total | Status | Deposit | Action |
|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ ucfirst($order->type) }} | R{{ number_format($order->total_cost, 2) }} | {{ str_replace('_', ' ', ucfirst($order->status)) }} | {{ ucfirst($order->deposit_status) }} | View Details |
You haven't created any custom orders yet.
Create Custom Order