@if ($job->hardwares()->count() == 0 && is_null($job->white_sheet_36) && is_null($job->white_sheet_24) && is_null($job->freightOption))
No Item Available
@else
@if (!is_null($job->white_sheet_36) || !is_null($job->white_sheet_24))
@if (!is_null($job->white_sheet_36))
@endif
@if (!is_null($job->white_sheet_24))
@endif
@endif
@if ($job->freightOption)
@endif
@if ($job->hardwares()->count())
@foreach ($job->hardwares()->get() as $k => $hardware)
@php
$qty = $hardware->pivot->qty;
$hardware_item = $hardware->customerGroups()->where('id', $job->user->customerGroup->id)->first();
$price = $hardware_item->pivot->price;
$total = round($price*$qty, 2);
@endphp
@endforeach
@endif
@endif
@endif