@extends(getTemplate().'.layouts.app') @push('styles_top') @endpush @section('content') @if((!empty($webinars) and count($webinars)) or (!empty($products) and count($products)) or (!empty($teachers) and count($teachers)) or (!empty($organizations) and count($organizations)))

{{ trans('site.result_find',['count' => $resultCount , 'search' => request()->get('search')]) }}

@if(!empty($webinars) and count($webinars))

{{ trans('webinars.webinars') }}

@foreach($webinars as $webinar)
@include(getTemplate().'.includes.webinar.grid-card',['webinar' => $webinar])
@endforeach
@endif @if(!empty($products) and count($products))

{{ trans('update.products') }}

@foreach($products as $product)
@include('web.default.products.includes.card',['product' => $product])
@endforeach
@endif @if(!empty($teachers) and count($teachers))

{{ trans('panel.users') }}

@foreach($teachers as $teacher) @endforeach
@endif @if(!empty($organizations) and count($organizations))

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

@endif
@else

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

{{ trans('site.no_result_search_hint',['search' => request()->get('search')]) }}

@endif @endsection