@php
$imagePath = $blogPosts->image;
@endphp
{{ \Carbon\Carbon::parse($blogPosts->created_at)->format('d M Y') }}
{{ucfirst($blogPosts->category)}}
{{$blogPosts->title}}
{!! $blogPosts->description !!}
Related Tags :
@php $tags = !empty($blogPosts->tags) ? array_filter(array_map('trim', explode(',', $blogPosts->tags))) : []; @endphp @foreach($tags as $tagName) {{ ucfirst($tagName) }} @endforeach
@php
$authorImagePath = $blogPosts->profile_image;
@endphp
About {{ucfirst($blogPosts->customer)}}
Comments ({{$countReview}})
@if($countReview > 0)
@foreach($blogReviews as $review)
@if(!$loop->last)
@endif @endforeach
{{ \Carbon\Carbon::parse($review->created_at)->diffForHumans() }}
{{$review->comments}}
@endif @endforeach