@extends('Admin.layouts.app') @section('title', 'FAQ List') @section('content')
FAQs
Add FAQ
@if(Session::has('done'))
{{ Session::get('done') }}
@endif @if(Session::has('delete'))
{{ Session::get('delete') }}
@endif
@forelse($faqs as $faq) @empty @endforelse
User Type Question Answer Action
{{ ucfirst($faq->user_type) }} {{ $faq->question }} {{ $faq->answer ?? 'Pending' }}
@csrf @method('DELETE')
No FAQs found.
@endsection