Laravel documentation shows that you can define custom configurations for your Monologger by placing the following code into your bootstrap/app.php file:
$app->configureMonologUsing(function($monolog) {
$monolog->pushHandler();
});
What are the possible custom configurations & syntaxes for them?
I'd like to change the daily log file's default permissions to 664 instead of the default 644, to avoid 'Permission denied' issues in the application.