@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'] !== '') @else @endif {{ __('help text') }} {{ __('Search')}} @endif Students {{ __('Frequently Asked Question') }} @php $faqs = App\FaqStudent::all(); @endphp @foreach($faqs as $student_key => $faq) @if($faq->status == 1) {{ $faq->title }} {!! $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->title }} {!! $faq->details !!} @endif @endforeach {{ __('Create Ticket') }} @endsection @section('custom-script') @endsection