@extends('layout.index') @section('title', 'Data Pengesahan - SIAPN') @push('styles') {{-- ============================================================ DESIGN SYSTEM 2026 — PREMIUM GREEN EDITION ============================================================ --}} @endpush @section('content')
{{-- ============================================================ PAGE HEADER — KONSISTEN DENGAN CREATE/EDIT ============================================================ --}} {{-- ============================================================ 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($pengesahan as $index => $item) @empty @endforelse
No Tahun (2 Digit) @if(request('sort') == 'tahun') @else @endif Tgl/Bulan (4 Digit) @if(request('sort') == 'tanggal_bulan') @else @endif Preview Prefix ID Aksi
{{ $pengesahan->firstItem() + $index }} {{ $item->tahun }} {{ $item->tanggal_bulan }} {{ $item->tahun }}[KodePAC]{{ $item->tanggal_bulan }}[NoUrut] {{-- DESKTOP ACTION BUTTONS --}}
@csrf @method('DELETE')
{{-- MOBILE ACTION DROPDOWN (⋮) --}}
Edit
@csrf @method('DELETE')
Belum ada jadwal pengesahan
Klik tombol "Tambah Jadwal" untuk menambahkan data pertama.
Tambah Jadwal
{{-- Pagination & Info --}}
Menampilkan {{ $pengesahan->firstItem() ?? 0 }}{{ $pengesahan->lastItem() ?? 0 }} dari {{ $pengesahan->total() }} data
{{ $pengesahan->appends(request()->query())->links('pagination::bootstrap-5') }}
{{-- ============================================================ SCRIPTS (SweetAlert2 + Konfirmasi Delete + Dropdown) ============================================================ --}} @push('scripts') @endpush @endsection