@extends('dashboard.base') @section('content')
{{ __('Notes') }}

@foreach($notes as $note) @endforeach
Author Title Content Applies to date Status Note type
{{ $note->user->name }} {{ $note->title }} {{ $note->content }} {{ $note->applies_to_date }} {{ $note->status->name }} {{ $note->note_type }} View Edit
@method('DELETE') @csrf
{{ $notes->links() }}
@endsection @section('javascript') @endsection