@extends('layouts.app-admin') @section('title', 'FAQ Management') @push('styles') @endpush @section('content')
@if (session('success')) @endif @if (session('error')) @endif
Reset

Daftar FAQ

Total: {{ $stats['total'] }} Aktif: {{ $stats['active'] }} Nonaktif: {{ $stats['inactive'] }}
@if (count($faqs) > 0)
@forelse ($faqs as $faq) @empty @endforelse
Urutan Kategori Pertanyaan Jawaban Status Tanggal Aksi
{{ $faq->order }} {{ $categories[$faq->category] ?? $faq->category }}
{{ Str::limit($faq->question, 60) }}
{{ Str::limit(strip_tags($faq->answer), 80) }}
@if ($faq->is_active) Aktif @else Nonaktif @endif {{ $faq->created_at->diffForHumans() }}
{{-- View Button --}} {{-- Edit Button --}} {{-- Delete Button --}}
{{-- Hidden Delete Form --}}
@csrf @method('DELETE')

Belum Ada FAQ

Mulai dengan menambahkan FAQ pertama untuk membantu pengguna.

@if (is_object($faqs) && method_exists($faqs, 'hasPages') && $faqs->hasPages()) @endif @endif
@endsection @section('scripts') @endsection