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

{!! $metaArr['main_banner_subtitle'] ?? "Learn More" !!}

{!! @$metaArr['main_banner_title'] ?? "Blog" !!}

@if(@$metaArr['main_banner_img_type'] == "video") @endif

Search

@if($categories->count())

Categories

has('catids') && request()->catids == "") checked @endif> {!! $all->count() !!}
@foreach($categories as $category)
has('catids') && (in_array($category->id,explode(",",request()->catids)) || request()->catids == "")) checked @endif> {!! $category->blogs()->whereHas('blog', function ($q) { $q->where('is_active',1); })->count() !!}
@endforeach
@endif
@if($blogs->total())
@foreach($blogs as $blogList)
{!! $blogList->name !!}

{!! $blogList->name !!}

{!! substr(strip_tags($blogList->description),0, 250); !!}, Read More

@if($blogList->is_author_show)

By{!! $blogList->authors_name !!}

@endif
@endforeach
@else
No blog post found!
@endif
@endsection @section('js') @stop