@extends('layouts.master') @section('title','Assign Materials Details') @section('page-header') Assign Materials Details @stop @push('style') @endpush @section('content')
@include('partials._alert_message')

@yield('page-header')

Company Name: {{ $data->company->name }}

Factory Name: {{ $data->factories->name }}

Invoice No: {{ $data->invoice_no }}

Date: {{ $data->date }}

@foreach($data->materialDetails as $value) @endforeach
Sl Product Name Unit Quantity
{{ $loop->iteration }} {{ $value->product->name }} {{ $value->unitName->name }} {{ $value->assign_qty }}
@if(request()->routeIs('journal.approve.show') && !$data->is_approved)
@csrf
@endif
@endsection @section('js') @endsection