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

Create anOrder

@endsection @section('breadcrumb-items') @endsection @section('content')
@csrf
Job Name : {{ $stock_check->job_name }} @foreach ($rooms as $room) @foreach ($room['products'] as $product) @php $productDetails = $products->get($product['product_id']); $qty = $product['quantity'] ?? 1; $productWeight = $productDetails->weight * $qty; $productPrice = $productDetails->cost * $qty; $assembleCost = $productDetails->assemble_cost * $qty; @endphp @endforeach @endforeach @if ($stock_check->unload_type == 1) @else @endif @if ($stock_check->delivery_type == 1) @else @endif
Double Check Work Cabinet Name Cabinet Description Weight Unit Price Total Price Quantity Assemble Cost
{{ $productDetails->label }} {{ $productDetails->sku . ' - ' . $productDetails->doorColor->product_label ?? '' }} {{ $productWeight }}lbs ${{ number_format($productDetails->cost, 2) }} ${{ number_format($productPrice, 2) }} {{ $qty }} ${{ number_format($assembleCost, 2) }}
Sub Total {{ $totalWeight }} lbs ${{ number_format($totalPrice, 2) }} ${{ number_format($miscellaneousCost, 2) }}
Fuel Charges ({{$fuel_charge}}%) - ${{ number_format($fuelCharges, 2) }}
Cabinetry Assembly Cost - ${{ number_format($assembleCost, 2) }}
Shipping Charges
Pallets (Total Pallets = {{ $stock_check->total_pallets ?? 0 }}) ${{ number_format($stock_check->total_pallets * 30 ?? 0, 2) }}
Liftgate Charges ${{ number_format($liftgateCost, 2) }}
Unload Cost(By Hand)Unload Cost(By Forklift) ${{ number_format($unloadCost, 2) }}
Delivery Charges ( Commercial ) ${{ number_format($deliveryCost, 2) }}
Delivery Charges ( Residential ) ${{ number_format($deliveryCost, 2) }}
Sales Tax ({{ $tax_value }}%)

NOTE: 'Sales Tax' will be calculated as per your Ship To 'County'.

- ${{ number_format($salesTax, 2) }}
Credit Card Charges({{$credit_card_percent}}%) - ${{number_format($credit_card_charges, 2)}}
Grand Total {{ $totalWeight }} lbs ${{ number_format($grandTotal + $credit_card_charges, 2)}}
Comment : {{ $stock_check->comment }}

Bill To:

Name* :
Address* :
City* :
State* :
County* :
Country* :
Zip* :
Email* :
Phone* :

Ship To:

Name* :
Address* :
City* :
State* :
County* :
Country* :
Zip* :
Email* :
Phone* :
(You save nothing.)
First Name* :
Last Name* :
Address* :
City* :
State* :
Zip Code* :
Card Number* :
Expiration Date* : Format: MM/YY i.e 09/25
CVV Number* :
(You save $22.01)
(You save $12.51)
(You save $22.51)
@endsection @section('script') @endsection