@extends('layouts.admin') @section('content')

Daftar Barang Showroom

@if (session('success'))
{{ session('success') }}
@endif
{{-- --}} {{-- --}} @forelse ($showroom as $index => $item) {{-- --}} {{-- --}} {{-- Modal Zoom Foto --}} @if($item->produksi && $item->produksi->fotoproduk) @endif @empty @endforelse
No Nama Produk StokStok TambahanStok TotalStok Terjual Sisa Stok Harga Jual Foto Barcode Tanggal Masuk
{{ $index + 1 }} {{ $item->produksi->namaproduk ?? 'Data hilang' }} {{ $item->stok_awal ?? 0 }}{{ $item->stok_tambahan ?? 0 }}{{ $item->stok_total ?? ($item->stok_awal + $item->stok_tambahan) }}{{ $item->stok_terjual ?? 0 }} {{ $item->stok_sisa ?? 0 }} @if($item->produksi && $item->produksi->hargajual) Rp {{ number_format($item->produksi->hargajual, 0, ',', '.') }} @else - @endif @if($item->produksi && $item->produksi->fotoproduk) @else - @endif @if($item->kodeqr) Barcode
Download PNG @else - @endif
{{ \Carbon\Carbon::parse($item->tanggalmasuk)->format('d-m-Y') }}
Belum ada barang masuk showroom.
@endsection @push('scripts') @endpush