@extends('website.includes.master') @section('title') Blogs @endsection @section('content') {{--
--}}
@forelse($blogs as $b=>$blog)
{{ $blog->heading }}

{{ \Carbon\Carbon::parse($blog->created_at)->format('d M') }}

{{ $blog->heading }}

{!! Str::limit($blog->description,100) !!}

@empty @endforelse
{{ $blogs->links() }}
@endsection