Skip to content

Configuration

You can change Laraventus config by running the command:

Terminal window
php artisan vendor:publish

And then edit the file named config/laraventus.php.

<?php
return [
"model" => [
"timestamps" => true,
"only_fillable" => false
],
"controller" => [
"attributes" => true
],
"error" => [
"print_console" => true,
"stack_limit" => 10
]
];