@extends('layouts.admin-layout')
@section('title', 'All Faqs ')
@section('content')
Faqs
| S.N. |
Question |
Answer |
Action |
@foreach ($faqs as $faq)
| {{ $loop->iteration }} |
{{ $faq->question ?: '' }} |
{{ $faq->answer ?: '' }} |
|
@endforeach
@endsection
@section('script')
@endsection