@extends('layout.app') @section('content')
@foreach($data['barang'] as $index => $item) @php $average = $item->demand / 365; if($item->stok_terbaru > $item->rop){ $bg = 'bg-green-500'; }else{ $bg = 'bg-yellow-500'; } if($item->stok_terbaru < $item->safety_stok){ $bg = 'bg-red-500'; } @endphp @endforeach
No Kode Barang Nama Barang Kategori Ukuran Harga Jual Stok Kalkulasi EOQ
{{ $index + 1 }} {{ $item->kode }} {{ $item->nama }} {{ $item->kategori->nama }} {{ $item->ukuran }} {{ 'IDR ' . number_format($item->harga_jual, 0, ',', '.') }} {{ $item->stok_terbaru }} Pcs
@endsection @section('script') @endsection