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

{{ $blog->title }}

  • Author : {{ $blog->author_name }}
  • Date : {{ $blog->created_at->format('jS F, Y'); }}
  • Views : {{ $blog->views }}
{!! $blog->content !!}
Author
{{ $blog->author_name }}

{{ $blog->author_title }}

Recent Blogs

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

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

@endforeach
@endsection