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

{{ !empty($category) ? $category->title : $pageTitle }}

{{ $webinarsCount }} {{ trans('product.courses') }}
@if(!empty($featureWebinars) and !$featureWebinars->isEmpty())

{{ trans('home.featured_webinars') }}

{{ trans('site.newest_courses_subtitle') }}
@foreach($featureWebinars as $featureWebinar)
@include('web.default.includes.webinar.grid-card',['webinar' => $featureWebinar->webinar])
@endforeach
@endif
@include('web.default.pages.includes.top_filters')
@if(empty(request()->get('card')) or request()->get('card') == 'grid')
@foreach($webinars as $webinar)
@include('web.default.includes.webinar.grid-card',['webinar' => $webinar])
@endforeach
@elseif(!empty(request()->get('card')) and request()->get('card') == 'list') @foreach($webinars as $webinar) @include('web.default.includes.webinar.list-card',['webinar' => $webinar]) @endforeach @endif

{{ trans('public.type') }}

@foreach(['webinar','course','text_lesson'] as $typeOption)
get('type', []))) checked="checked" @endif class="custom-control-input">
@endforeach
@if(!empty($category) and !empty($category->filters)) @foreach($category->filters as $filter)

{{ $filter->title }}

@if(!empty($filter->options))
@foreach($filter->options as $option)
id, request()->get('filter_option', []))) checked="checked" @endif class="custom-control-input">
@endforeach
@endif
@endforeach @endif

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

@foreach(['bundles','subscribe','certificate_included','with_quiz','featured'] as $moreOption)
get('moreOptions', []))) checked="checked" @endif class="custom-control-input">
@endforeach
{{ $webinars->appends(request()->input())->links('vendor.pagination.panel') }}
@endsection @push('scripts_bottom') @endpush