@extends('layouts.app') @section('title', 'Katalog Produk & Bahan') @section('page_title', 'Katalog Management') @section('content')
Add Item
@forelse($katalogs as $item) @empty @endforelse
No Gambar Nama Produk Jenis Harga Stok Status Aksi
{{ $loop->iteration }} @if($item->gambar) {{-- Tombol untuk memicu modal --}} @else @endif {{ $item->nama_produk }} {{ str_replace('_', ' ', $item->jenis) }} Rp {{ number_format($item->harga, 0, ',', '.') }} {{ $item->stok }} {{ $item->satuan }} ● {{ ucfirst($item->status) }}
Katalog kosong
{{ $katalogs->links() }}
{{-- Global Image Modal --}}
@endsection