@extends('layouts.web.master') @section('title') {{ __('Blog') }} @endsection @section('main_content') {{-- Banner Code Start --}} {{ __('Home') }} >{{ __('Blog List') }}> {{ __('Blog Details') }} {{-- Blogs Section Code Start --}} {{ formatted_date($blog->updated_at) }} {{ $blog->title }} {{ $blog->descriptions }} {{ $comments->count() }} {{ __('Comment') }} @foreach ($comments as $comment) {{ $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 {{ __('Full Name') }}* {{ __('Email') }}* {{ __('Comment') }}* {{ __('Comment') }} {{ __('Recent Posts') }} @foreach ($recent_blogs as $blog) {{ formatted_date($blog->updated_at) }} {{ Str::limit($blog->title, 60, '...') }} {{ __('Read More') }} > @endforeach @endsection
{{ __('Home') }} >{{ __('Blog List') }}> {{ __('Blog Details') }}
{{ formatted_date($blog->updated_at) }}
{{ $blog->descriptions }}
{{ $comment->updated_at->format('F d, Y \a\t g:i a') }}
{{ $comment->comment }}
{{ __('Your email address will not be published') }}*
{{ Str::limit($blog->title, 60, '...') }}
{{ $comments->count() }} {{ __('Comment') }}
@foreach ($comments as $comment)
{{ $comment->name }}
{{ $comment->updated_at->format('F d, Y \a\t g:i a') }}
{{ $comment->comment }}