@extends('front-layout.default') @section('content') @include('front.blog._search-partial')
@if($blog_listing->count()) @foreach($blog_listing as $k=>$blog)

{!! $blog->title !!}

{!! str_limit(strip_tags($blog->content), 500, '...') !!}

Read More


@endforeach @endif
{!! $blog_listing->render()!!}
@stop