@extends('theme.master') @section('title', 'Online Courses') @section('content') @include('admin.message')
@php $sliders = App\Slider::orderBy('position', 'ASC')->get(); @endphp @if(isset($sliders)) @endif @php $facts = App\SliderFacts::limit(3)->get(); @endphp @if(isset($facts))
@foreach($facts as $fact)
{{ $fact['heading'] }}

{{ $fact['sub_heading'] }}

@endforeach
@endif @php $categories = App\CategorySlider::first(); @endphp @if(isset($categories))
@php $items = App\CourseText::first(); @endphp @if(isset($items))
{{ $items['heading'] }}

{{ $items['sub_heading'] }}

@endif
@php $categories = App\CategorySlider::first(); @endphp @if(isset($categories->category_id)) @endif
@if(!empty($categories)) @foreach($categories->category_id as $cate)
@endforeach @endif
@endif
@php $cor = App\Course::all(); @endphp @if( ! $cor->isEmpty() )

{{ __('frontstaticword.FeaturedCourses') }}

@endif
@php $bundles = App\BundleCourse::get(); @endphp @if( ! $bundles->isEmpty() )

{{ __('frontstaticword.BundleCourses') }}

@endif
@if($gsetting->zoom_enable == '1')
@php $meetings = App\Meeting::where('link_by', NULL)->get(); $mytime = Carbon\Carbon::now(); @endphp @if( ! $meetings->isEmpty() )

{{ __('frontstaticword.ZoomMeetings') }}

@endif
@endif @if($gsetting->bbl_enable == '1')
@php $bigblue = App\BBL::where('is_ended','!=',1)->where('link_by', NULL)->get(); @endphp @if( ! $bigblue->isEmpty() )

{{ __('Live Classes') }}

@endif
@endif

Watch Demo Classes

@php $demovideo = App\Demovideo::get(); $mytimes = Carbon\Carbon::now(); @endphp @foreach($demovideo as $demovideos)
student
@php $course_id= $demovideos['course_id']; $coursesname = App\Course::where('id',$course_id)->get(); @endphp @foreach($coursesname as $coursetitles)
{{ $coursetitles['title']}}
@endforeach
@endforeach
@php $gets = App\GetStarted::first(); @endphp @if(isset($gets))

{{ $gets['heading'] }}

{{ $gets['sub_heading'] }}

@if($gets->button_txt == !NULL) @endif
@endif
@php $topcats = App\Categories::orderBy('position', 'ASC')->get(); @endphp @if(!$topcats->isEmpty())

{{ __('frontstaticword.TopCategories') }}

@foreach($topcats as $t) @if($t->status == 1) @endif @endforeach
@endif @php $testi = App\Testimonial::all(); @endphp @if( ! $testi->isEmpty() )

{{ __('frontstaticword.HomeTestimonial') }}

@endif @php $trusted = App\Trusted::all(); @endphp @if( !$trusted->isEmpty() )
{{ __('frontstaticword.Trusted') }}
@endif
@php $ad = App\Adsense::first(); @endphp
@endsection @section('custom-script') @endsection