@extends('admin.layouts.master') @section('page-title', 'FAQ') @section('content')

Daftar FAQ

Tambah FAQ
@forelse($faqs as $index => $faq) @empty @endforelse
No Pertanyaan Kategori Urutan Status Aksi
{{ $index + 1 }} {{ \Illuminate\Support\Str::limit($faq->question, 90) }} {{ $faq->category ?: '-' }} {{ $faq->order ?? '-' }} {{ $faq->is_active ? 'Aktif' : 'Nonaktif' }}
@csrf @method('DELETE')
Belum ada FAQ
@endsection