{{ $note->title }}
Created on: {{ $note->created_at->format('M d, Y') }} |
@if($note->category) Folder: {{ $note->category->name }} @endif
@if($note->structured_content)
{{ strip_tags((new \Parsedown())->text($note->structured_content)) }}
@else
{{ $note->content }}
@endif
@if($note->tags->count() > 0)
Tags:
@foreach($note->tags as $tag)
#{{ $tag->name }}
@endforeach
@endif