Inventory Name |
{{$inventoriesname->name}} |
Inventory Location |
{{ucwords($locations->name)}} |
Input Barcode |
{{ucwords($items->scanbarcode)}} |
Inventory User |
{{$userName}} |
@if(isset($itemInventory) && !empty($itemInventory))
@foreach($itemInventory as $key => $value)
@if($value != 'image')
{{$key}} |
{{ucwords($items->$value)}} |
@endif
@endforeach
@endif
@if($items->unitquantity !='' && $items->unitcost !='0.0000')
Total Unit Price |
$0 |
@endif
@if($items->casecost != '0.0000' && $items->casequantity != '')
Total Case Price |
${{$items->casecost * $items->casequantity}} |
@endif
@if($totalvalue != '')
Total Price |
${{$totalvalue}} |
@endif