Configuration

The package configuration can be published by running:

php artisan vendor:publish --provider='Konekt\\Gears\\Providers\\GearsServiceProvider' --tag="config"

The following options can be configured:

Key Value Default Details
driver Classname of the custom backend driver Konekt\Gears\Backend\Drivers\CachedDatabase See Custom Backend for more details
migrations bool true If false, migrations will not be loaded*

*If migrations are disabled, you can still publish them by invoking:
php artisan vendor:publish --provider='Konekt\\Gears\\Providers\\GearsServiceProvider' --tag="migrations"

Next: Defining Settings »