@push('styles')
@endpush
@php // deal with some of the cosmetic changes per item
$pricecols = 5;
$singleName = Str::singular($product_type_title);
$singleNameAlt = Str::singular($product_type_title);
$costlabel = "Cost Price";
$productRunlabel = "Item Run Qty";
switch($product_type_id){
case 4:
$costlabel = "Price per sheet or meter bar length";
$pricecols = 2;
case 5:
case 2:
$productRunlabel = "Number normally ordered";
break;
case 3:
$pricecols = 2;
break;
case 6:
$singleNameAlt = '';
$productRunlabel = "Number normally ordered";
$pricecols = 2;
break;
case 7:
$pricecols = 2;
break;
case 8:
$costlabel = "Price per material piece";
$pricecols = 2;
break;
case 9:
$costlabel = "Price per material piece";
$productRunlabel = "Number of Material Pieces normally ordered";
$pricecols = 2;
break;
}
@endphp