@extends('admin.layout.content') @section('content')
{{-- Notifikasi Flash Message Sukses / Gagal --}} @if (session('success')) @endif @if (session('error')) @endif {{-- Alert Menampilkan Error Validasi Input Form --}} @if ($errors->any()) @endif {{-- Header Halaman --}}

Manajemen Produk

Kelola data induk produk.

{{-- Trigger Modal Tambah --}}
{{-- Filter Bar --}}
search
{{-- Tabel Data Utama --}}
@forelse($products as $index => $product) @empty @endforelse
No Nama Produk Deskripsi Produk Ditambahkan Aksi
{{ $index + 1 }} {{ $product->product_name }} {{ $product->description ?? 'Tidak ada deskripsi.' }} {{ $product->created_at ? \Carbon\Carbon::parse($product->created_at)->format('d/m/Y H:i') : '-' }}
{{-- Detail --}} {{-- Edit Induk --}} {{-- Hapus Total --}}
inventory_2 Belum ada data produk yang tersedia.
{{-- Pagination Bar --}}

{{-- ==================== MODAL TAMBAH (CREATE) ==================== --}} {{-- ==================== MODAL EDIT INFO INDUK (UPDATE) ==================== --}} {{-- ==================== MODAL DETAIL PRODUK ==================== --}} {{-- ==================== MODAL HAPUS TOTAL (DELETE) ==================== --}} {{-- JAVASCRIPT: Logic Utama & Penyelarasan Fitur Client-Side --}} @endsection