@extends('layouts.app') @section('title') {{'Material Registration'}} @endsection @section('content') @php $users_name = DB::table('users')->select('id','name')->orderBy('name','asc')->get(); @endphp
Material Registration Back
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif


@php if (isset($data_set->id)) { $display = 'block'; } else { $display = 'none'; } @endphp
Sub Group Name
Material Name
Unit
Pack Size
Free
Dollar Price
Purchase Price
H.S Code
Item Number
Alert Stock Qty

  {{ csrf_field() }} @if(isset($data_set->id)) @else @endif

 

 
@php $i=0; @endphp @foreach($material_list as $row) @php $i++; @endphp @endforeach
S.N. ID Sub Group Name Material Name Unit Pack Size Free $ Price Purchase Price H.S Code Item Number Alert Stock Qty Status Action
{{$i}} {{$row->id}} {{$row->material_type}} {{$row->material_name}} {{$row->pack_type}} {{$row->pack_size}} {{$row->free}} {{$row->dollar}} {{$row->dp_price}} {{$row->hs_code}} {{$row->item_number}} {{$row->low_s_q}} @if(isset($row->id)) @if (Auth::user()->id == "2") @endif @endif
@endsection