This repository was archived by the owner on Jul 16, 2023. It is now read-only.
Lean config file + route caching support
- The config file for new installations will now reside on
config/laravalid.php. There's no need for a separate folder for only a file, right? (refs bgultekin#23) - it's now possible to use
./artisan route:cacheto improve your production performance. To do so, you must use the newactionoption, pointing to a controller action (something likeSiteController@getValidation), and run your validation procedures there. Before, route caching was not possible since the default route was a closure.