@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 Blog Detail {!! $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, '...') !!}. by {{ $blog->author_name }} @endforeach @endsection
{{ $blog->author_title }}
{!! mb_strimwidth($blog->content, 0, 80, '...') !!}.