Order Form Orders Order Form
[], 'variations' => [], 'quantities' => []]), }, today: @js(now()->toDateString()), })" class="space-y-6" >

Manage order forms

Create customer order records using saved products, parts configuration, and size variation quantity planning.

Search
@forelse ($orders as $order)

{{ $order->order_no }}

{{ $order->customer?->name }}

{{ $order->product?->name }} | Qty {{ $order->qty }}

Delivery {{ $order->delivery_date?->format('d M Y') ?: '-' }}

{{ ucfirst($order->status) }}
Print
@csrf @method('DELETE')
@empty
No orders yet. Create your first order from the button above.
@endforelse
{{ $orders->links() }}