@extends('layouts.main') @section('title') Bahan Baku @endsection @section('container')
Tabel Bahan
@foreach ($bahan as $item) @endforeach
No Nama Qty
{{ $loop->iteration }} {{ $item->nama }} {{ $item->qty }} meter
@foreach ($bahanMasuk as $item) @endforeach
No Nama Harga Qty Total Harga Tanggal
{{ $loop->iteration }} {{ $item->bahanBaku->nama }} Rp. {{ number_format($item->bahanBaku->harga, 0, ',', '.') }} {{ $item->qty }} meter Rp. {{ number_format($item->bahanBaku->total_harga, 0, ',', '.') }} {{ \Carbon\Carbon::parse($item->created_at)->format('d F Y') }}
@foreach ($bahanKeluar as $item) @endforeach
No Nama Pesanan Qty Tanggal
{{ $loop->iteration }} {{ $item->bahanBaku->nama }} {{ $item->pesanan->produk->nama }} x {{ $item->pesanan->qty }} {{ $item->qty }} meter {{ \Carbon\Carbon::parse($item->created_at)->format('d F Y') }}
{{-- modal add --}} @endsection