@extends('layouts.app') @section('content')

Keresés a(z) “{{$term}}” kifejezésre

{{-- not found --}} @if(count($model_blog) == 0 && count($model_video) == 0 && count($model_page) == 0)
Sajnos a keresett kifejezés nem található.
@else {{-- founded --}}
{{-- NEWS --}} @if(count($model_blog) > 0)

{{-- news-card --}} @foreach($model_blog as $model)

{{$model->title}}

{{$model->created_at}}
Elolvasom arrow
{{--
{{$news->title}}
--}} card
@endforeach @if($model_blog->total() > 3)
@endif
@endif @if(count($model_video) > 0) {{-- VIDEOS --}}

{{--

{{--
--}}
{{-- video-card --}} @foreach($model_video as $model)

{{$model->title}}

Elolvasom arrow
{{--
{{$news->title}}
--}} card
@endforeach @if($model_video->total() > 3) @endif
@endif @if(count($model_page) > 0) {{-- GENERAL --}}

{{--

{{--
--}}
{{-- general-card --}} @foreach($model_page as $model)

{{$model->title}}

Elolvasom arrow
@endforeach @if($model_page->total() > 3)
@endif
@endif
{{--

HÍREK

--}}
@endif
@endsection