Laravel Log Fake released v2.0 with support for Laravel 9 and a completely closure-based assertion API:The Log fake package is an excellent way to ensure critical logging happens through testing assertions. As a basic example from the readme, you first bind the LogFake instance, and then you can assert logging: 1LogFake::bind(); 2 ...
23 May, 2022
How to Validate Your Laravel App's Config
Programing Coderfunda
May 23, 2022
Laravel, Packages
No comments

As your Laravel projects change and grow, it's likely that you'll add new config fields and onboard new team members to work alongside you. Especially for junior developers, setting up config and environment variables on your local development...