@extends('layouts.admin') @section('content')

Manage FAQs

@if(session('success')) @endif @if($faqs->count() > 0)
@foreach($faqs as $faq) @endforeach
Question Category Sort Order Status Created Actions
{{ $faq->question }}
@if($faq->category) {{ $faq->category }} @else - @endif {{ $faq->sort_order }} @if($faq->is_active) Active @else Inactive @endif {{ $faq->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $faqs->links() }}
@else
No FAQs Found

Start by adding your first FAQ.

Add First FAQ
@endif
@endsection @push('styles') @endpush @push('scripts') @endpush