@extends('layouts.app') @section('title', 'Notes') @push('styles') @endpush @section('content') @php $noteColors = ['#FEF3C7', '#D1FAE5', '#DBEAFE', '#FCE7F3']; $noteJson = $notes->map(function ($n) { return ['id' => $n->id, 'content' => $n->content, 'color' => $n->color, 'pinned' => $n->pinned]; }); @endphp

Quick notes

@forelse ($notes as $note)
@if($note->pinned)
@endif
{{ $note->content }}
@csrf
@empty
No notes yet. Click "Add Note" to create one.
@endforelse

Confirm Delete

Are you sure? This cannot be undone.

@csrf @method('DELETE')
@endsection