view Recycle Wastage

@if ($recycle_wastage->type == 1)

Wastage Detail , Date : {{ $recycle_wastage->date }}

Input Materials

@foreach ($recycle_wastage_data as $row) @endforeach
Item Name QTY PPC
{{ CommonHelper::get_item_name($row->item_id) }} {{ $row->qty }} {{ $row->ppc }}

OutPut Material

Item Name Ware House Batch code QTY
{{ CommonHelper::get_item_name($recycle_wastage->item_id) }} {{ CommonHelper::get_location($recycle_wastage->warehouse_id) }} {{ $recycle_wastage->batch_code }} {{ $recycle_wastage->qty }}
@else

Recycle Detail , Date : {{ $recycle_wastage->date }}

Input Materials

@foreach ($recycle_wastage_data as $row) @endforeach
Item Name Ware House Batch code QTY Item Type
{{ CommonHelper::get_item_name($row->item_id) }} {{ CommonHelper::get_location($row->warehouse_id) }} {{ $row->batch_code }} {{ $row->qty }} {{ $row->item_type == 1 ? "Recycle Material" : 'Raw Material'}}

OutPut Material

Item Name Ware House Batch code QTY
{{ CommonHelper::get_item_name($recycle_wastage->item_id) }} {{ CommonHelper::get_location($recycle_wastage->warehouse_id) }} {{ $recycle_wastage->batch_code }} {{ $recycle_wastage->qty }}
@endif