Debug bar and configuration updates.

This commit is contained in:
James Cole
2014-06-28 09:50:42 +02:00
parent 885685815e
commit f4194368c9
28 changed files with 3394 additions and 170 deletions

View File

@@ -24,11 +24,11 @@ $app = new Illuminate\Foundation\Application;
|
*/
$env = $app->detectEnvironment(array(
$env = $app->detectEnvironment(function() {
// Default to production if LARAVEL_ENV is not set
return getenv('LARAVEL_ENV') ?: 'production';
});
'local' => array('homestead'),
));
/*
|--------------------------------------------------------------------------