BWBlogs Worldinankitkhoiwal.hashnode.dev·Sep 8 · 11 min readLaravel Sanctum 419 Error: Why It Happens and How to Fix ItLaravel Sanctum authentication can appear deceptively simple: GET /sanctum/csrf-cookie POST /login GET /api/user Until this appears: 419 Page Expired Then the debugging begins. You change CORS. You 00
BWBlogs Worldinankitkhoiwal.hashnode.dev·Sep 2 · 15 min readFrom 102 Queries to 3: A Better Way to Fix Laravel N+1 ProblemsA Laravel page can feel perfectly fast in development and still become painfully slow after real data arrives. That is what makes N+1 problems annoying. They rarely look like bugs. Nothing crashes. No00
BWBlogs Worldinankitkhoiwal.hashnode.dev·Aug 21 · 11 min readWhat Actually Happens When You Deploy React to Vercel?There is a strange moment in almost every first React deployment. You have two browser tabs open. The first is localhost, where the application looks exactly as expected. The second is a new .vercel.a00
BWBlogs Worldinankitkhoiwal.hashnode.dev·Aug 18 · 7 min readWe migrated a dashboard from Context to Redux mid-project. Here's what the postmortem actually said.Most "Context vs Redux" writing gets done in the abstract, before anyone has shipped anything. This one isn't that. This is what happened after a real internal dashboard outgrew Context, what we measu00
BWBlogs Worldinankitkhoiwal.hashnode.dev·Aug 7 · 10 min readBuild a Clean Node.js REST API with Express and MySQLMost CRUD demos prove that four SQL statements work. They do not show what happens when validation, database failures, incorrect IDs, and inconsistent response formats enter the same codebase. A maint00