Quick reminder to change the path in the BaseController to match the change to the alias.
652 B
652 B
Laravel Upgrade Guide
Upgrading From 4.0 to 4.1
composer update.- Replace
public/index.php,artisan.php. - Add new
expire_on_closeoption tosessionconfiguration file. - Remove call to
redirectIfTrailingSlashinbootstrap/start.phpfile. - Edit
app/config/app.php; inaliaseschange'Controller' => 'Illuminate\Routing\Controllers\Controller',to useIlluminate\Routing\Controller - Edit
app/controllers/BaseController.phpchangeuse Illuminate\Routing\Controllers\Controller;touse Illuminate\Routing\Controller; - If you are overriding missingMethod in your controllers, add $method as the first parameter.