@extends('frontend.layout') @section('title') {{ $post->title }} @endsection @push('css') @endpush @section('content')

{{ $post->title }}

{!! html_entity_decode($post->body) !!}
  • SHARE :

CATEGORIES

POST COMMENT

@guest

For post a new comment. You need to login first. Login

@else
@endguest

COMMENTS({{ $post->comments()->count() }})

@if($post->comments->count() > 0) @foreach($post->comments as $comment)

{{ $comment->comment }}

@endforeach @else

No Comment yet. Be the first :)

@endif
@endsection @push('js') @endpush