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

Add FAQ

@csrf

All FAQs

@foreach($faqs as $faq) @endforeach
QuestionStatusActions
{{ Str::limit($faq->question,60) }} @if($faq->is_active)Active@elseHidden@endif
@csrf @method('PUT')
@csrf @method('DELETE')
@endsection