Skip to content
Chirag Gude edited this page Mar 6, 2015 · 3 revisions

LaraBase Wiki Pages

Remember

  • After a major app update, clear all cookies by changing the key in /app/config/app.php
  • In Production, specify the environment for Artisan CLI command. For example to migrate the Migrations after the latest git pull: php artisan migrate --env=production. Similarly to Seed the DB: php artisan db:seed --env=production
  • In routes.php, All routes have to follow First-in-First-out scheme. If not, you might get the error Controller not found
  • php artisan clear-compiled and php artisan optimize
  • composer dump autoload and php artisan dump-autoload
  • Rollback all migrations and run them all again: php artisan migrate:refresh
  • Seed the Database: php artisan db:seed
  • XAMPP on Windows requires the php.ini to have extension=php_openssl.dll uncommented

To be Merged

  • Update from laravel/laravel (develop) - Working on compile config file. (18th July) - onwards
  • Last updated with laravel/laravel (master) on 24th Aug