@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 | @if ($stock_check_request->assemble_cabinets_check == "yes")Assemble Cost | @endifItem Notes | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Sub Total | {{ number_format($stock_check_request->sub_total_weight ?? 0, 2) }} lbs | ${{ number_format($stock_check_request->sub_total_cost ?? 0, 2) }} | @if ($stock_check_request->assemble_cabinets_check == 'yes') | ${{ number_format($stock_check_request->sub_total_assemble_cost ?? 0, 2) }} | @endif|||||||
| Fuel Charges ({{ $fuel_charge }}%) | ${{ number_format(($stock_check_request->sub_total_cost * $fuel_charge) / 100 ?? 0, 2) }} | @if ($stock_check_request->assemble_cabinets_check == 'yes') | ${{ number_format($stock_check_request->sub_total_assemble_cost ?? 0, 2) }} | @endif||||||||
| Cabinetry Assembly Cost | @if ($stock_check_request->assemble_cabinets_check == 'yes') | ${{ number_format($stock_check_request->sub_total_assemble_cost ?? 0, 2) }} | @endif|||||||||
| Shipping Charges | ${{ number_format($stock_check_request->shipping_cost ?? 0, 2) }} | ||||||||||
| Pallets Cost(Total Pallets = {{ $stock_check_request->total_pallets ?? 0 }}) | ${{ number_format($stock_check_request->total_pallets * 30 ?? 0, 2) }} | ||||||||||
| Delivery Cost( commerical ) | ${{ number_format($stock_check_request->delivery_cost ?? 0, 2) }} | ||||||||||
| Delivery Cost( Residential ) | ${{ number_format($stock_check_request->delivery_cost ?? 0, 2) }} | ||||||||||
| Liftgate Cost | ${{ number_format($stock_check_request->liftgate_cost ?? 0, 2) }} | ||||||||||
| Unload Cost(By Hand) | @elseUnload Cost(By Forklift) | @endif${{ number_format($stock_check_request->unload_cost ?? 0, 2) }} | |||||||||
| Miscellaneous Charge | ${{ number_format($stock_check_request->miscellaneous_cost ?? 0, 2) }} | ||||||||||
| Total (Excluding Sales Tax And Payment Charges) | {{ number_format($stock_check_request->sub_total_weight ?? 0, 2) }} lbs | @php $orderTotal = ($stock_check_request->grand_total_cost ?? 0) + ($stock_check_request->total_pallets * 30 ?? 0) + ($stock_check_request->delivery_cost ?? 0) + ($stock_check_request->liftgate_cost ?? 0) + ($stock_check_request->unload_cost ?? 0) + (($stock_check_request->sub_total_cost * $fuel_charge) / 100 ?? 0) + ($stock_check_request->miscellaneous_cost ?? 0); @endphp${{ number_format($orderTotal, 2) }} | |||||||||