@extends('layouts.tenant.master') @section('title', 'Pick List') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

Orders Pick List

@endsection @section('breadcrumb-items') @endsection @section('content')
Back
@csrf

Warehouse Pick List

Order #: {{$result->id}}

Job Name : {{$result->job_name}}

Bill To : {{$user->username}}

Address : {{$user->county_name}} {{$user->state->name}} {{$user->city_name}} {{$user->country->name}}
Email : {{$user->email}}
Phone : {{$user->phone}}

Ship To : {{$user->username}}

Address : {{$user->county_name}} {{$user->state->name}} {{$user->city_name}} {{$user->country->name}}
Email : {{$user->email}}
Phone : {{$user->phone}}

Compnay Name:

@foreach ($rooms as $room) @foreach ($room['products'] as $each) @php $productData = \App\Models\Product::with('doorColor')->find($each['product_id'] ?? null); if (!$productData) { continue; // Skip if product not found } @endphp @endforeach @endforeach
Cabinet Name Cabinet Description Weight Quantity Pull Assemble Deliver
{{ $room['room_name'] }}
{{$productData->productCategory->cabinets_name}} {{$productData->description}} {{$productData->weight}} {{$productData->qty}}

Note:

Issue Type Details
Missing
Damaged
Undeliverable
Date Problems
@endsection @section('script') @endsection