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

@yield('page-header')

@foreach($rawMaterials as $value) @endforeach
Sl Invoice Company Factory Date Status Action
{{ $loop->iteration }} {{ $value->invoice_no }} {{ $value->company->name }} {{ $value->factories->name }} {{ $value->date }}
@if( $value->is_approved == 0)
@else Approved @endif
@include('partials._user-log', ['data' => $value]) @if( $value->is_approved == 0) @endif
@csrf @method("DELETE")
@endsection @section('js') @endsection