@extends('layouts.dashboard') @section('header')

{{ __('Note Details') }}

@endsection @section('content')

Note Information

Detailed information about the note including content and related entity.

Note Details

Content: {{ $note->content }}
Author: {{ $note->user->name }}
Related To: {{ class_basename($note->noteable_type) }} #{{ $note->noteable_id }}
Created At: {{ $note->created_at->format('M d, Y H:i') }}
Updated At: {{ $note->updated_at->format('M d, Y H:i') }}
@endsection