@extends('layouts.app') @section('page_title', $note->title) @section('content')

{{ $note->title }}

@if($note->category) {{ $note->category }} @endif Updated {{ $note->updated_at->diffForHumans() }}
Edit
@csrf @method('DELETE')
{!! nl2br(e($note->content)) !!}
@if($note->project || $note->task)

Linked Resources

@if($note->project) @endif @if($note->task) @endif
@endif
Back to Notes
@endsection