@extends('layouts.admin-layout')
@section('title', 'All Faqs List')
@section('content')
Home Faqs Section
| S.N. |
Heading |
Short description |
status |
Action |
@foreach($get_faqs as $faq)
| {{ $loop->iteration }} |
{{$faq->title ? : '---'}} |
{{$faq->status === 1 ? 'Approve' : 'Not Approve'}}
|
|
@endforeach
@endsection
@section('script')
@endsection