@extends('admin.layouts.app') @section('title', 'Manajemen Tema') @section('content')
{{-- Popup sukses --}} @if(session('success')) @endif {{-- Header Judul --}}

Manajemen Tema

Menambah, mengedit, dan menghapus tema audit.

{{-- Form Tambah Tema --}}

Tambah Tema

Masukkan tema baru.

@csrf
{{-- Tabel Tema --}}

Daftar Tema

Data tema audit yang tersimpan.

@forelse($tema as $index => $t) @empty @endforelse
No Nama Tema Aksi
{{ $index + 1 }} {{ $t->nama }}
{{-- Tombol Edit --}} {{-- Tombol Simpan --}} {{-- Tombol Batal --}} {{-- Tombol Hapus --}}
@csrf @method('DELETE')
Belum ada data tema.
{{-- Script inline edit --}} @endsection