@extends('layouts.light.master') @section('title', 'Order') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

Create anOrder

@endsection @section('breadcrumb-items') @endsection @section('content')
1

Select Catalog

2

Select Door Style

3

Cart Products

4

Step 4


NOTE: Do empty search to reset. NOTE: Double click on Cabinet Label to select product.
@forelse ($product_sections as $section)
@php $product_data = $section->products ->where('product_catalog_id', $catalog_id) ->where('door_color_id', '=', $door_id); @endphp @foreach ($product_data as $product) @endforeach
Cabinet Label SKU Description Weight Cost Qty
{{ $product->label }} {{ $product->sku }} {{ $product->sku . '-' . $product->doorColor->product_label }} {{ $product->weight }} {{ $product->cost }} {{ $product->qty }}
Cabinet Label SKU Description Weight Cost Qty
@empty There is nothing to show. @endforelse
Step #1: Please enter Job Name and Room before selecting items from inventory.
Job Name * Clear Cart
Assemble All Cabinetry? *
@foreach ($roomNames as $room) @endforeach @foreach ($cart as $productId => $product) @endforeach
Double Check Work Cabinet Name Cabinet Description Weight Unit Price Total Price Quantity Delete

{{ $product['room_name'] }} Product ID: {{ $productId }} 0 lbs ${{ number_format($product['price'], 2) }} ${{ number_format($product['quantity'] * $product['price'], 2) }} {{ $product['quantity'] }}
0 lbs $0.00
@endsection @section('script') @endsection