@extends('front') @section('content')

{{ $blogDetail['title'] }}

Post Image

{!! $blogDetail['description'] !!}

{{ __('Comments') }}

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

    {{ $comment->comment_date }}

    {{ $comment->comment }}

  • @endforeach

{{ __('Write a Comment') }}

@if (empty(Auth::id()))
@endif
@endsection