Hi {{ $user->full_name }},
| Job Number | Client | Job Name | Material | Sheet Quantity |
|---|---|---|---|---|
| {{ $job->internal_id }} | {{ $job->user->full_name }} | {{ $job->name }} | @if($job->job_type == "Carcase") {{ $job->material_type == 'other' ? $job->other_material : $job->material_type }} @else @if ($job->painted == 'No') @if ( !is_null($job->supplier) ) {{ $job->supplier }} - @endif @if ( !is_null($job->colour) ) {{ $job->colour }} - @endif @if ( !is_null($job->thickness) ) {{ $job->thickness }} @endif @else White Satin @endif @endif |
@if($job->job_type == "Carcase")
@if (is_null($job->white_sheet_24) && is_null($job->white_sheet_36))
-
@else
24x12: {{ $job->white_sheet_24 }} 36x18: {{ $job->white_sheet_36 }} @endif @if($job->white_offcut) 1 Offcut @endif @else @if($job->painted == 'Yes') @if (is_null($job->white_satin_24) && is_null($job->white_satin_36)) - @else 24x12: {{ $job->white_satin_24 }} 36x18: {{ $job->white_satin_36 }} @endif @else @if (is_null($job->sheets_colour)) - @else {{ $job->sheets_colour }} @endif @endif @if($job->colour_offcut) 1 Offcut @endif @endif |