@extends('layouts.app') @section('content')
Select Date
@csrf
@foreach($manufacturing as $me) @endforeach
Items Item Code UOM Quantity Remark
{{@ucwords(@strtolower($me->item_name))}} {{$me->item_code}} {{$me->item_unit}}
Select Date

Manufacturing History

@foreach($manufacturingHistory as $history) @endforeach
Item UOM Quantity Rate
{{empty($app->currency) ? "GHS" : $app->currency}}
Cost
{{empty($app->currency) ? "GHS" : $app->currency}}
Remark Action
{{@ucwords(@strtolower($history->item_name))}}

{{$history->created_at}}

{{$history->item_unit}} {{$history->manufacturing_qty}} {{$history->rate}} {{$history->rate * $history->manufacturing_qty}} {{empty($history->manufacturing_comment) ? "No Comment" : $history->manufacturing_comment}}
Total @convert($manTotal)
@endsection