@extends('layouts.admin-apoteker') @section('title', 'Manajemen Katalog') @section('content')

📦 Manajemen Katalog

➕ Tambah Katalog
{{-- 🔍 Filter dan Pencarian --}}
🔁 Reset
{{-- 🗑️ Bulk Delete Form --}}
@csrf
{{-- 🔄 Tombol Import/Export Excel --}}
{{-- Export Excel --}} 📊 Export Excel {{-- Import Excel --}}
@csrf
{{-- Link Template --}} 📄 Unduh Template Excel
{{-- 📋 Tabel Katalog --}}
@forelse ($catalogs as $catalog) @empty @endforelse
Gambar Nama Harga Aktif Kategori Aksi
{{ $catalog->name }} Rp {{ number_format($catalog->price, 0, ',', '.') }}
@csrf @method('PUT')
{{ $catalog->category?->name ?? '-' }} Edit
Tidak ada katalog ditemukan.
{{-- 📄 Pagination --}}
{{ $catalogs->links('vendor.pagination.tailwind') }}
@endsection @push('scripts') {{-- ✅ SweetAlert untuk hasil Import / aksi --}} @if (session('success') || session('error')) @endif @endpush