@extends('layouts.app')
@section('page_title', $note->title)
@section('content')
{{ $note->title }}
@if($note->category)
{{ $note->category }}
@endif
Updated {{ $note->updated_at->diffForHumans() }}
Edit
{!! nl2br(e($note->content)) !!}
@if($note->project || $note->task)
Linked Resources
@if($note->project)
@endif
@if($note->task)
@endif
@endif
@endsection