@extends('frontend.layouts.master') @section('title') {{ucwords(@$cat_name)}} | Blog @endsection @section('css') @endsection @section('content')
@include('frontend.pages.blogs.sidebar')
@foreach($allPosts as $post)

{{@$post->title}}

  • {{date('d M Y', strtotime($post->created_at))}}
{{ elipsis( strip_tags(@$post->description)) }}
@endforeach
{{ $allPosts->links('vendor.pagination.default') }}
@endsection