@extends('admin.layouts.base') @section('title', 'Warehouse Space Orders') @section('content')
| Order Reference | Customer | Warehouse | Rental Period | Space (SQFT) | Final Price | Order Status | Payment Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $order->order_reference }} |
{{ $order->customer_name }} {{ $order->customer_email }} |
{{ $order->warehouse->name }} | @if ($order->rental_start_date && $order->rental_end_date) {{ $order->rental_start_date->format('M d') }} - {{ $order->rental_end_date->format('M d, Y') }} @else Not set @endif | {{ number_format($order->total_sqft, 2) }} | ${{ number_format($order->final_price, 2) }} | {{ $order->order_status->label() }} | {{ $order->payment_status->label() }} | View |
|
No orders found. |
||||||||