@extends('layouts.admin-layout')
@section('title', 'All Faqs')
@section('content')
Faq Section
| S.N. |
Heading |
Description |
Action |
@foreach ($get_faqs as $pod)
| {{ $loop->iteration }} |
{{ $pod->heading ?: '' }} |
{{ $pod->description ?: '' }} |
|
@endforeach
@endsection
@section('script')
@endsection