@extends('layouts.frontend-master') @section('title', 'Category Wise News') @section('content')
Category: {{ $category->name }}
Home
News
{{ $category->name }}
@if(count($cat_blogs) > 0) @foreach($cat_blogs as $key => $blog)
{{ $blog->title }}
{{ $blog->created_at->format('F d, Y') }}
@endforeach @else
No news found for the category !
@endif
{{ $cat_blogs->links('vendor.pagination.default') }}
@endsection