@extends('layouts.mainlayout') @section('title','List Barang') @if(Auth::user()->role_user === 'Admin') @section('tombol+')
@endsection @elseif(Auth::user()->role_user === 'Operator')
@endif @section('header+') @endsection @section('content')
Data Barang
@if(Auth::user()->role_user === 'Admin') @elseif(Auth::user()->role_user === 'Operator') @endif @foreach ($table_barang as $Barang) @if(Auth::user()->role_user === 'Admin') @elseif(Auth::user()->role_user === 'Operator') @endif @endforeach
NO SKU VALUE CATEGORY PACKAGING FOOTPRINT MINIMAL STOCK TOTAL STOCKAKSI
{{$loop->iteration}} {{$Barang->SKU}} {{$Barang->VALUE}} {{$Barang->category->CATEGORY}} {{$Barang->packaging->PACKAGING}} {{$Barang->footprint->FOOTPRINT}} {{$Barang->MINIMAL_STOCK}} {{$Barang->TOTAL_STOCK}}
@endsection @section('Script') @endsection