@extends('layouts.app-admin') @section('title', 'FAQ Management') @push('styles') @endpush @section('content')
| 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() }} | {{-- Hidden Delete Form --}} |