@extends('layouts.app') @section('title', 'My Orders - Additional Design') @section('styles') @endsection @section('content')

My Orders

View your standard and custom orders

Standard Orders

@if ($standardOrders->count() > 0)
@foreach ($standardOrders as $order) @endforeach
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
@else

You haven't placed any standard orders yet.

Browse Products
@endif

Custom Orders

+ New Custom Order
@if ($customOrders->count() > 0)
@foreach ($customOrders as $order) @endforeach
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
@else

You haven't created any custom orders yet.

Create Custom Order
@endif
@endsection