@php use Illuminate\Support\Facades\Storage; use Illuminate\Support\Str; @endphp @extends('layouts.app') @section('title', 'Kelola Produk') @push('styles') @endpush @section('content')
{{-- Ambient Light penambah kontras teks --}}
{{-- ── HEADER SECTION ───────────────────────────────────── --}}
Inventory & Stock

Kelola Lapak Jualan

Atur semua item jualan kamu dalam satu kendali terpusat.

TAMBAH PRODUK BARU
{{-- ── NAVIGATION TABS ──────────────────────────────────── --}}
Total Koleksi: {{ $products->total() }} Item
{{-- ── PRODUCT LIST GRID (GLASS) ────────────────────────── --}}
@forelse($products as $product)
{{-- Product Thumbnail --}}
Gambar {{ $product->name }}
{{-- Meta Details --}}

{{ $product->name }}

{{ $product->type_label }} {{ $product->status == 'published' ? '⚡ Published' : '💤 Archived' }}

Kategori: {{ $product->category?->name ?? 'Tanpa Kategori' }}

{{-- Pricing Element --}}
Harga Satuan
Rp {{ number_format($product->price, 0, ',', '.') }}
{{-- ── CARD ACTIONS FOOTER ──────────────────────────── --}}
EDIT DATA ITEM @if($status === 'active')
@csrf @method('DELETE')
@else
@csrf
@csrf @method('DELETE')
@endif
@empty {{-- ── EMPTY STATE DESIGN ──────────────────────────────── --}}
📦
Tidak Ada Item Ditemukan

Etalase di tab ini masih kosong melompong. Yuk tambah produk baru biar daganganmu makin laku!

@endforelse
{{-- Pagination --}}
{{ $products->links() }}
@endsection