@extends('admin.layouts.app') @section('content')

{{ $page_title }}

Material:
@if($note->material) {{ $note->material->title }} @else N/A @endif
Content:
{!! nl2br(e($note->content)) !!}
@if($note->has_attachments)
Attachments:
    @foreach($note->attachments as $attachment)
  • {{ $attachment }}
  • @endforeach
@endif
Created:
{{ $note->created_at->format('M d, Y H:i') }}
Updated:
{{ $note->updated_at->format('M d, Y H:i') }}
Note Statistics

{{ $note->attachment_count }}

Attachments

{{ strlen($note->content) }}

Characters
@endsection