Optimizing Laravel starts within

Last week, I posted about a learning experience I thought would help any Laravel developer. This time, I’ll be talking about the importance of optimizing your app and how it can unexpectedly go wrong. If you’re unfamiliar with the deployment process of a Laravel app, I recommend reading this page from the official Laravel docs.… Continue reading Optimizing Laravel starts within

The day a PHP namespace ruined all notifications

If you’re familiar with Laravel, you know that your classes live in a child namespace of the App namespace. However, moving from Laravel 7.x to 8.x, the models (that lived directly in App) were non-forcefully moved to the App\Models namespace. I’ll be honest, I loved this idea because I hated opening the app directory to… Continue reading The day a PHP namespace ruined all notifications