@extends('layouts.admin') @section('title', 'Manage FAQs') @section('content')
| 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 |
| No FAQs found. Create one. | ||||||