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

Website FAQs

{{ $faqs->total() }} total

+ Add FAQ
@if($faqs->isEmpty())
No FAQ found.
@else @foreach($faqs as $faq) @endforeach
Question Actions

{{ $faq->question }}

{{ \Illuminate\Support\Str::limit($faq->answer, 90) }}

Edit
@csrf @method('DELETE')
{{ $faqs->links() }}
@endif
@endsection