@extends('layouts.app') @section('page_title', 'Notes') @section('content')
All Notes
@forelse($categories as $cat){{ $cat }}
@empty @endforelse{{ $showArchived ? '📂 Hide Archived' : '📂 Show Archived' }}
{{ $search ? 'No notes found matching your search' : 'No notes yet' }}
@if(!$search) Create your first note → @endif📁 {{ $note->category }}
@endif{{ strip_tags($note->content) }}