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

{{ __('Notes') }}

@endsection @section('content')

My Notes

Create Note
@if($notes->isEmpty())

No notes found

Notes you create will appear here.

@else
@foreach($notes as $note)
{{ $note->user->name }} on {{ class_basename($note->noteable_type) }} #{{ $note->noteable_id }}
View Edit
@csrf @method('DELETE')
{{ $note->content }}
{{ $note->created_at->format('M d, Y H:i') }}
@endforeach
{{ $notes->links() }}
@endif
@endsection