{{ $job->name }} | {{ $job->required_date }}

{{ $job->company_name }} - {{ $job->contact }} - {{ $job->email }} - {{ $job->phone }}

@if ($job->job_type == 'Carcase')

Carcass

Carcass material 1:

Supplier: {{ $job->supplier == "Other" ? $job->other_supplier : $job->supplier }}
Colour: {{ $job->colour }}
Finish: {{ $job->finish }}
Thickness: {{ $job->thickness == "Other" ? $job->other_thickness : $job->thickness }}
{{ $job->tc_supply == "Yes" ? "TC Supply" : "Client Supply" }}
@if ($job->matching_edge == 'No') Edge: {{ $job->matching_edge_supplier }}, {{ $job->matching_edge_colour }}, {{ $job->matching_edge_finish }}, {{ $job->matching_edge_thickness}} @else Edge: Matching @endif
Cabinets Individually wrapped: {{ $job->carcase_wrap }}
@endif @if ($job->job_type == 'Doors/Panels')

Other Materials

Other material 1:

Supplier: {{ $job->supplier == "Other" ? $job->other_supplier : $job->supplier }}
Colour: {{ $job->colour == "Other" ? $job->other_colour : $job->colour }}
Material Description: {{ $job->profile_flat}} @if ($job->profile_flat == 'Profile') ({{ $job->profile_details }}) @endif
Finish: {{ $job->finish }}
Thickness: {{ $job->thickness == 'Other' ? $job->other_thickness : $job->thickness }}
{{ $job->tc_supply == "Yes" ? "TC Supply" : "Client Supply"}}
Edge: @if ($job->material_edging == 'No') NA @else @if ($job->material_edging == 'Matching') Matching @else NA @endif @if (!is_null($job->matching_edge_supplier)) {{ $job->matching_edge_supplier }}, @endif @if (!is_null($job->matching_edge_colour)) {{ $job->matching_edge_colour }}, @endif @if (!is_null($job->matching_edge_finish)) {{ $job->matching_edge_finish }}, @endif @if (!is_null($job->matching_edge_thickness)) {{ $job->matching_edge_thickness }} @endif @endif @if (!is_null($job->carcase_wrap)) Wrap: {{ $job->carcase_wrap }} @endif
@endif @if ($job->job_type == 'Hardware')

Hardware Supply

@if (!is_null($job->blum))
Hinges: Blum - {{ $job->blum }}
@endif @if (!is_null($job->bin_width))
Bin: Width: {{ $job->bin_width }} | Depth: {{ $job->bin_depth }}
@endif @if (!is_null($job->screw_knock_in))
Adjustable legs (90-170): {{ $job->screw_knock_in }}
@endif @if (!is_null($job->other_hardware_tc_supply_type))
Other Hardware: {{ $job->other_hardware_tc_supply_type }}
@endif @if ($job->has_drawers == 'Yes')

Drawers:

@if (collect($job->drawers)->where('type', '!=','Other')->count())

We Can Supply:

@endif
    @foreach (collect($job->drawers)->where('type', '!=','Other') as $k => $v)
  • {{ $k + 1 }}. {{ $v['type'] }}
  • @endforeach
@if (collect($job->drawers)->where('type', 'Other')->count())

We Can't Supply:

@endif
    @foreach (collect($job->drawers)->where('type', 'Other') as $k => $v)
  • {{ $k + 1 }}. {{ $v['other_type'] }}
  • @endforeach
@endif
@endif @if ($job->job_type == 'Doors/Panels')

Cabinet requirements and drilling

{{$job->carcass_construction == "Other" ? $job->other_carcass_construction : $job->carcass_construction}}
{{ $job->hinge_type == "Other" ? $job->other_hinge_type: $job->hinge_type }}
{{$job->hinge_position == "Other"? $job->other_hinge_position: $job->hinge_position }}
@if (!is_null($job->drill_hinge_cups))
{{ $job->drill_hinge_cups }}
@endif
{{ $job->base_cabinet == "Other" ? 'Top: '.$job->base_cabinet_top.' Bottom: '.$job->base_cabinet_bottom.' Left/Right: '.$job->base_cabinet_left_right.' Vert./Hz: '.$job->base_cabinet_vert: $job->base_cabinet }}
@if ($job->upper_tall_cabinet)
{{ $job->upper_tall_cabinet == "Other" ? 'Top: '.$job->upper_tall_cabinet_top.' Bottom: '.$job->upper_tall_cabinet_bottom.' Left/Right:'.$job->upper_tall_cabinet_left_right.' Vert./Hz: '.$job->upper_tall_cabinet_vert : $job->upper_tall_cabinet}}
@endif @if ($job->has_drawers == 'Yes')
@foreach ( $job->drawers as $key => $drawer)

Drawer Type {{ $key + 1 }}: {{ $drawer['type'] == "Other" ? $drawer['other_type'] : $drawer['type']}} | Drill drawer fronts: {{ $drawer->drill_drawer_fronts }}    @if ($drawer['type'] == 'Blum Metabox') | Drill for soft close: {{ $drawer['drill_soft_close'] }} @endif

@endforeach
@endif
@endif

Packing and release information

@if (!is_null($job->delivery_required) )
{{ $job->delivery_required }}
@endif @if (!is_null($job->delivery_type) && $job->delivery_required == 'Yes')
{{ $job->delivery_type }}
@endif @if (!is_null($job->address_address) && $job->delivery_required == 'Yes') {{ $job->address_address }} @endif @if (!is_null($job->wrap_strap_pallet) && $job->delivery_required == 'No')
{{ $job->wrap_strap_pallet }}
@endif @if (!is_null($job->pallet_size) && $job->delivery_required == 'No')
{{$job->pallet_size == "Other"? $job->other_pallet_size: $job->pallet_size}}
@endif

Notes

Special Notes/Request:

{{ $job->special_packing }}

Special notes for design:

{{ $job->notes }}

Other Notes:

{{ $job->other_notes }}

Documents:

@foreach($job->getMedia('order_pdf') as $media)

{{ $media->name }} ({{ $media->size }} KB)

@endforeach