@extends('layout.index') @section('title', 'Data PAC - SIAPN KARANGANYAR') @push('styles') {{-- ============================================================ DESIGN SYSTEM 2026 — PREMIUM GREEN EDITION ============================================================ --}} @endpush @section('content')
{{-- ============================================================ PAGE HEADER — KONSISTEN DENGAN HALAMAN CREATE/EDIT & DATA PENGESAHAN ============================================================ --}} {{-- ============================================================ SWEETALERT2 SESSION NOTIFICATIONS ============================================================ --}} @if(session('success')) @endif @if(session('error')) @endif {{-- ============================================================ FILTER CARD — Search + Actions (dalam satu card) ============================================================ --}}
{{-- DESKTOP / TABLET ROW --}}
{{-- Search --}} @if(request('sort')) @endif @if(request('direction')) @endif {{-- Filter & Reset Actions (Desktop) --}}
{{-- ============================================================ MOBILE LAYOUT — Search → Actions (stacked) ============================================================ --}}
{{-- Search --}}
{{-- Filter & Reset inline di mobile --}}
Reset
{{-- ============================================================ FILTER ACTIVE CHIPS ============================================================ --}} @if(request('search'))
Filter aktif: "{{ request('search') }}" ×
@endif {{-- ============================================================ TABLE DATA GRID (Premium) ============================================================ --}}
@forelse($pacs as $index => $item) @empty @endforelse
No Nama PAC @if(request('sort') == 'nama_pac') @else @endif Kode PAC @if(request('sort') == 'kode_pac') @else @endif Aksi
{{ $pacs->firstItem() + $index }} {{ $item->nama_pac }} {{ $item->kode_pac }} {{-- DESKTOP ACTION BUTTONS --}}
@csrf @method('DELETE')
{{-- MOBILE ACTION DROPDOWN (⋮) --}}
Edit
@csrf @method('DELETE')
Belum ada data PAC
Klik tombol "Tambah PAC" untuk menambahkan data pertama.
Tambah PAC
{{-- Pagination & Info --}}
Menampilkan {{ $pacs->firstItem() ?? 0 }}{{ $pacs->lastItem() ?? 0 }} dari {{ $pacs->total() }} data
{{ $pacs->appends(request()->query())->links('pagination::bootstrap-5') }}
{{-- ============================================================ SCRIPTS (SweetAlert2 + Konfirmasi Delete + Dropdown) ============================================================ --}} @push('scripts') @endpush @endsection