@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') }} {{ __('Instructor') }} {{ __('FAQ') }} @php $faqs = App\FaqStudent::all(); @endphp @foreach($faqs as $faq) @if($faq->status == 1) {{ $faq->title }} @endif @endforeach {{ __('search topic') }} {{ __('Purchase History') }} {{ __('See your purchase history & explore more Courses')}} @if(Auth::check()) {{ __('UserProfile') }} {{ __('Manage your account settings.')}} @else {{ __('UserProfile') }} {{ __('Manage your account settings.')}} @endif {{ __('Contactus') }} {{ __('Open a support ticket')}} {{ __('FAQ') }} @php $faqss = App\FaqInstructor::all(); @endphp @foreach($faqss as $faqs) @if($faqs->status == 1) {{ $faqs->title }} @endif @endforeach {{ __('search topic') }} {{ __('Contact us') }} {{ __('Open a support ticket')}} @if($gsetting->instructor_enable == 1) @if(Auth::check()) @if(Auth::User()->role == "user") {{ __('Become An Instructor') }} {{ __('To Become An Online Instructor')}} @else {{ __('Become An Instructor') }} {{ __('To Become An Online Instructor')}} @endif @endif @endif @endsection @section('custom-script') @endsection