Topic: Laravel
All the articles about "Laravel".
-
Why My Flux UI Checkbox Didn't Work (And When to Use Native HTML Instead)
Flux UI's checkbox component silently does nothing in traditional HTML forms. Here's why, and when you need native HTML instead.
-
Three Bugs Hiding Behind One Production Error
A single 500 error on my idea edit page turned out to be three separate bugs stacked on top of each other. Here's how I found and fixed each one.
-
Preventing Visual Shift in Your Laravel App
Three types of visual shift that make your Laravel app feel janky, and the patterns to fix each one. Conditional UI, loading states, and modal content.
-
Why updateOrCreate With a Null ID Always Creates Duplicates
Laravel's updateOrCreate silently creates duplicates when passed a null ID. Here's why SQL id = NULL never matches, and the simple guard to fix it.