{{-- Left panel --}}
{{-- Note content --}}
Note Details
{{ $note->title }}
@if($note->category)
{{ $note->category }}
@else
No category
@endif
@if($note->updated_at->ne($note->created_at))
@endif
@if($note->date)
@endif
{{-- Quick actions --}}
{{ $note->title }}
@if($note->is_favorite)
@endif
{{-- Category + tags --}}
@if($note->category || ($note->tags && count($note->tags)))
@if($note->category)
{{ $note->category }}
@endif
@if($note->tags)
@foreach($note->tags as $tag)
{{ $tag }}
@endforeach
@endif
@endif
{{-- Content body --}}
{!! $note->content !!}
{{-- Stats bar --}}