@extends('layouts.admin') @section('title', 'Manage FAQs') @section('content')

Manage FAQs

+ Create New FAQ
@if(session('success')) @endif
@forelse($faqs as $faq) @empty @endforelse
Order Question Category Answer Preview Status Created Actions
{{ $faq->order }} {{ Str::limit($faq->question, 60) }} {{ $faq->category ?? '-' }} {{ Str::limit(strip_tags($faq->answer), 80) }} @if($faq->is_active) Active @else Inactive @endif {{ $faq->created_at->format('M d, Y') }} Edit
@csrf @method('DELETE')
No FAQs found. Create one.
@endsection