@extends('admin.layouts.master')
@section('page-title', 'FAQ')
@section('content')
| No |
Pertanyaan |
Kategori |
Urutan |
Status |
Aksi |
@forelse($faqs as $index => $faq)
| {{ $index + 1 }} |
{{ \Illuminate\Support\Str::limit($faq->question, 90) }} |
{{ $faq->category ?: '-' }} |
{{ $faq->order ?? '-' }} |
{{ $faq->is_active ? 'Aktif' : 'Nonaktif' }}
|
|
@empty
| Belum ada FAQ |
@endforelse
@endsection