@extends('layouts.master') @section('title', 'Post page') {{-- this comment will not be present in the rendered HTML --}} @section('sidebar') @parent

this is post page (not override)

@endsection @section('content')
@if(!empty($post))

{{$post->title}}

{{$post->content}} @forelse($post->tags as $tag) {{$tag->name}} @empty @endforelse

Comments:

@include('front.partials.comment')
@else

No post

@endif
@endsection