@extends(getTemplate().'.layouts.app') @push('styles_top') @endpush @section('content')

{{ $title }}

{{ $instructorsCount }} {{ $title }}
get('available_for_meetings',null) == 'on') checked="checked" @endif>
get('free_meetings',null) == 'on') checked="checked" @endif>
get('discount',null) == 'on') checked="checked" @endif>

{{ trans('categories.categories') }}

@foreach($categories as $category) @if(!empty($category->subCategories) and count($category->subCategories)) @foreach($category->subCategories as $subCategory)
id,request()->get('categories',[]))) checked="checked" @endif>
@endforeach @else
id,request()->get('categories',[]))) checked="checked" @endif>
@endif @endforeach
@foreach($instructors as $instructor)
@include('web.default.pages.instructor_card',['instructor' => $instructor])
@endforeach
@if(!empty($bestRateInstructors) and !$bestRateInstructors->isEmpty() and (empty(request()->get('sort')) or !in_array(request()->get('sort'),['top_rate','top_sale'])))

{{ trans('site.best_rated_instructors') }}

{{ trans('site.best_rated_instructors_subtitle') }}
{{ trans('home.view_all') }}
@foreach($bestRateInstructors as $bestRateInstructor)
@include('web.default.pages.instructor_card',['instructor' => $bestRateInstructor])
@endforeach
@endif @if(!empty($bestSalesInstructors) and !$bestSalesInstructors->isEmpty() and (empty(request()->get('sort')) or !in_array(request()->get('sort'),['top_rate','top_sale'])))

{{ trans('site.top_sellers') }}

{{ trans('site.top_sellers_subtitle') }}
{{ trans('home.view_all') }}
@foreach($bestSalesInstructors as $bestSalesInstructor)
@include('web.default.pages.instructor_card',['instructor' => $bestSalesInstructor])
@endforeach
@endif
@endsection @push('scripts_bottom') @endpush