@extends('theme.master') @section('title', 'Help') @section('content') @include('admin.message') @php $gets = App\Breadcum::first(); @endphp @if(isset($gets))
@if($gets['img'] !== NULL && $gets['img'] !== '') {{$gets->text}} @else {{ __('course')}} @endif

{{ __('help text') }}

@endif
Students

{{ __('Frequently Asked Question') }}

@php $faqs = App\FaqStudent::all(); @endphp @foreach($faqs as $student_key => $faq) @if($faq->status == 1)

{!! $faq->details !!}
@endif @endforeach
Instructors

{{ __('Frequently Asked Question') }}

@php $faqss = App\FaqInstructor::all(); @endphp @foreach($faqss as $instructor_key => $faq) @if($faq->status == 1)

{!! $faq->details !!}
@endif @endforeach
@endsection @section('custom-script') @endsection