Using Boring Avatars in Laravel Orchid
Spice up your dashboard with not-so-boring avatars!

Search for a command to run...
Articles tagged with #laravel
Spice up your dashboard with not-so-boring avatars!

Bridging two different worlds

Problem I had a problem in Lumen where each of my integrated tests ran for about a minute. This was slow and counterproductive for me. My initial setup was using a separate MySQL testing database to conduct the integrated tests. I tried to use an SQL...

Problem I was looking for the RequestHandled event in Lumen. Unfortunately, I was not able to find it. This event can be found in Laravel through the Illuminate/Foundation/Http/Events namespace. Lumen does not have reference of this namespace though,...
I remember my times using Lumen. I did not know composer scripts back then so I had to type vendor/bin/phpunit painstakingly when running my tests. I used bash aliases to shorten commands. I have the alias created on my Dockerfile on build-time. Like...

Foreword Over the past week, I was studying about microservices and event-driven architecture. I decided to go with the event sourcing paradigm since it looked promising when it is executed right. I am using Lumen and I stumbled into the beautiful sp...