@extends('layouts.app')
@section('content')
BRANCH |
RECORD OF RAW MATERIALS |
@foreach($composition_all_branches as $branch => $item)
{{$branch}} |
Code |
Raw Material Name |
Unit Measure |
Total Used |
Total |
Related Invoice |
@foreach($item as $item)
{{$item->material_code}} |
{{$item->comp_name}} |
{{$item->unit_measure}} |
{{$item->comp_quantity}} |
{{$item->unit_total}} |
#{{$item->invoice_number}} |
@endforeach
|
@endforeach
@endsection