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

All Notes Details

@if(request('search') && $notes->isEmpty())
No results found for "{{ request('search') }}".
@endif
@forelse ($notes as $note) @empty @endforelse
ID Note Title Note Date Actions
{{ $note->id }} {{ $note->title }} {{ $note->note }} {{ $note->created_at }}
@csrf @method('DELETE')
No records found.
@endsection