@extends('layouts.user') @section('title') Blog @endsection @section('content')

Blogs / News

@forelse($blogs as $blog)
{{ $blog->created_at->format('jS F, Y'); }} {{ $blog->views }}
{{ $blog->title }}

{!! mb_strimwidth($blog->content, 0, 80, '...') !!}.

@empty

No Blog Posts At The Moment!.

@endforelse
@endsection