@extends('layouts.web.master') @section('title') {{ __('Blog') }} @endsection @section('main_content') {{-- Banner Code Start --}} {{-- Blogs Section Code Start --}}

{{ formatted_date($blog->updated_at) }}

{{ $blog->title }}

{{ $blog->descriptions }}

{{ $comments->count() }} {{ __('Comment') }}

@foreach ($comments as $comment)
user
{{ $comment->name }}

{{ $comment->updated_at->format('F d, Y \a\t g:i a') }}

{{ $comment->comment }}


@endforeach
{{ __('Leave a Comment Here') }}

{{ __('Your email address will not be published') }}*


@csrf
{{ __('Recent Posts') }}
@foreach ($recent_blogs as $blog)
...

{{ formatted_date($blog->updated_at) }}

{{ Str::limit($blog->title, 60, '...') }}

{{ __('Read More') }} >
@endforeach
@endsection