@extends('layouts.app') @section('content') @include('includes.sub_header', [ 'page_name' => $blog->title, 'page_title' => $blog->title, 'second_page_title' => 'NEWS & BLOGS', 'route' => route('blog.index'), ])
{{ $blog->title }}

{{ $blog->title }}

{{ $blog->created_at->toDateString() }}
{!! $blog->description !!}

Comments ({{ $blog->comments->count() }})

    @forelse ($blog->comments as $comment)
  1. {{ $comment->user->name }} {{ $comment->created_at->toDateString() }}
    {{ $comment->comment }}
    @if ($comment->child->count() > 0)
    1. {{ $comment->child->user->name }} {{ $comment->child->created_at->toDateString() }}
      {{ $comment->child->comment }}
    @endif
  2. @empty @endforelse

Leave a Comment

Get Quotation
@endsection @section('scripts') @if (app()->getLocale() != 'en') @endif @endsection