@extends('layouts.app') @section('title', 'Produksi') @section('page-title', 'Manajemen Produksi') @section('content') {{-- Filter --}}
@if(request()->hasAny(['from','to'])) ✕ Reset @endif
Catat Produksi
{{-- Penjelasan alur --}}
Cara Kerja Produksi: Saat produksi dicatat, stok bahan mentah akan otomatis dikurangi dan stok produk jadi akan otomatis bertambah.
Produksi
{{ $produksis->total() }} batch
@forelse($produksis as $i => $p) @empty @endforelse
# Tanggal Bahan Mentah (Input) Qty Digunakan Produk Jadi (Output) Qty Dihasilkan Aksi
{{ $produksis->firstItem() + $i }} {{ $p->tanggal->format('d M Y') }} {{ $p->bahanMentah->name ?? '-' }} −{{ number_format($p->qty_bahan_mentah) }} {{ $p->bahanMentah->satuan ?? '' }} {{ $p->produkJadi->name ?? '-' }} +{{ number_format($p->qty_produk_jadi) }} {{ $p->produkJadi->satuan ?? '' }} 👁
⚙️ Belum ada catatan produksi.
@if($produksis->hasPages())
{{ $produksis->links() }}
@endif
@endsection