@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
Are you sure? This cannot be undone.