@extends('layouts.tenant.master') @section('title', 'Stock Check Menu') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')
| Double Check Work | Cabinet Name | Cabinet Description | Weight | Unit Price | Total Price | Quantity | Assemble Cost | Item Notes |
|---|---|---|---|---|---|---|---|---|
| Sub Total | {{ number_format($stock_check_request->sub_total_weight ?? 0, 2) }} lbs | ${{ number_format($stock_check_request->sub_total_cost ?? 0, 2) }} | ${{ number_format($stock_check_request->sub_total_assemble_cost ?? 0, 2) }} | |||||
| Cabinetry Assembly Cost | ${{ number_format($stock_check_request->sub_total_assemble_cost ?? 0, 2) }} | |||||||
| Total (Excluding Sales Tax And Payment Charges) | {{ number_format($stock_check_request->sub_total_weight ?? 0, 2) }} lbs | ${{ number_format($stock_check_request->grand_total_cost ?? 0, 2) }} | ||||||
| Shipping Charges | ${{ number_format($stock_check_request->shipping_cost ?? 0, 2) }} | |||||||
| Pallets Cost(Total Pallets = 1) | ${{ number_format($stock_check_request->pallets_cost ?? 0, 2) }} | |||||||
| Delivery Cost | ${{ number_format($stock_check_request->delivery_cost ?? 0, 2) }} | |||||||
| Liftgate Cost | ${{ number_format($stock_check_request->liftgate_cost ?? 0, 2) }} | |||||||
| Unload Cost(By Hand) | ${{ number_format($stock_check_request->unload_cost ?? 0, 2) }} | |||||||
| Miscellaneous Charge | ${{ number_format($stock_check_request->miscellaneous_cost ?? 0, 2) }} | |||||||
| Order Total | @php $orderTotal = ($stock_check_request->grand_total_cost ?? 0) + ($stock_check_request->pallets_cost ?? 0) + ($stock_check_request->delivery_cost ?? 0) + ($stock_check_request->liftgate_cost ?? 0) + ($stock_check_request->unload_cost ?? 0) + ($stock_check_request->miscellaneous_cost ?? 0); @endphp | ${{ number_format($orderTotal, 2) }} | ||||||