Blog


August 29, 2024

From 500 to 404: A Route Model Binding Debug Tale

Today, I had an interesting pairing session with a fellow developer at work. We were going over one of their controllers when I noticed they weren't using Laravel's Route Model Binding in the...

Read

July 24, 2024

My contribution to laravel/fortify 🎉

Last week, my intern and I were working on a feature that adds logs every time a 2FA-related action occurs. We use Laravel Fortify, and even though Fortify already dispatches a lot of events in...

Read

July 16, 2024

Preventing Transaction-Related Issues in Laravel

Today, I spent a good amount of hours troubleshooting an issue involving database transactions. Thankfully, with the assistance of a teammate, the problem is now resolved. Consider the following...

Read

July 12, 2024

Simplify POST, PUT, PATCH and DELETE Actions in Laravel using Blade components

When we create a link on a page to redirect the user to another page, it uses a GET request. However, if you want a user to click on a link that executes a DELETE request...

Read