Blog
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...
ReadJuly 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...
ReadJuly 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...
ReadJuly 11, 2024
Ways to Check if the User is Logged In or Not
In Laravel, there are many ways to check whether a user is logged in. In this post, I will demonstrate my favorite methods for performing these checks. A lot of people use...
Read