@extends('layouts.main')
@section('title')
Bahan Baku
@endsection
@section('container')
Tabel Bahan
@foreach ($bahan as $item)
No
Nama
Qty
@endforeach
{{ $loop->iteration }}
{{ $item->nama }}
{{ $item->qty }} meter
@foreach ($bahanMasuk as $item)
No
Nama
Harga
Qty
Total Harga
Tanggal
@endforeach
{{ $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)
No
Nama
Pesanan
Qty
Tanggal
@endforeach
{{ $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') }}