Topic: laravel
All the articles about "laravel".
-
I Asked AI to Audit My Laravel App's Security. It Found 4 Things I'd Never Have Caught.
A real security audit of a Laravel app found IDOR vulnerabilities in Livewire components, XSS through strip_tags(), mass assignment with $guarded = [], and predictable share tokens. Here's what was wrong and how I fixed each one.
-
My Signup Flow Silently Failed and Nobody Told Me
A user clicked Create Account and nothing happened. Three bugs were hiding behind that one symptom — hardcoded database IDs, a synchronous email that timed out, and a validation error on the wrong step.
-
Everything That Went Wrong When I Tried to Delete a Team
Deleting a team in a multi-tenant Laravel app broke transactions, orphaned pivot rows, and wiped user data across teams. Here are the five things that went wrong and how I fixed them.
-
Why My Livewire AI Chat Flashed Raw Markdown Before Rendering
Streaming AI responses in Livewire caused a flash of raw markdown (**bold text**) before the HTML rendered. The fix was moving markdown conversion server-side and removing a 5-step client-side pipeline.