Merge branch 'master' into develop

This commit is contained in:
Graham Campbell
2015-12-02 18:24:27 +00:00
7 changed files with 7 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel
* @var array
*/
protected $commands = [
\App\Console\Commands\Inspire::class,
Commands\Inspire::class,
];
/**

View File

@@ -15,7 +15,7 @@ class Authenticate
protected $auth;
/**
* Create a new filter instance.
* Create a new middleware instance.
*
* @param Guard $auth
* @return void

View File

@@ -35,7 +35,7 @@ class RedirectIfAuthenticated
public function handle($request, Closure $next)
{
if ($this->auth->check()) {
return redirect('/home');
return redirect('/');
}
return $next($request);

View File

@@ -95,7 +95,7 @@ return [
|
*/
'log' => 'single',
'log' => env('APP_LOG', 'single'),
/*
|--------------------------------------------------------------------------
@@ -176,7 +176,6 @@ return [
'Gate' => Illuminate\Support\Facades\Gate::class,
'Hash' => Illuminate\Support\Facades\Hash::class,
'Input' => Illuminate\Support\Facades\Input::class,
'Inspiring' => Illuminate\Foundation\Inspiring::class,
'Lang' => Illuminate\Support\Facades\Lang::class,
'Log' => Illuminate\Support\Facades\Log::class,
'Mail' => Illuminate\Support\Facades\Mail::class,

View File

@@ -4,7 +4,7 @@
"gulp": "^3.8.8"
},
"dependencies": {
"laravel-elixir": "^3.0.0",
"laravel-elixir": "^4.0.0",
"bootstrap-sass": "^3.0.0"
}
}

View File

@@ -4,7 +4,7 @@ return [
/*
|--------------------------------------------------------------------------
| Password Reminder Language Lines
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons

View File

@@ -60,7 +60,7 @@ return [
'regex' => 'The :attribute format is invalid.',
'required' => 'The :attribute field is required.',
'required_if' => 'The :attribute field is required when :other is :value.',
'required_unless' => 'The :attribute field is required unless :other is in :value.',
'required_unless' => 'The :attribute field is required unless :other is in :values.',
'required_with' => 'The :attribute field is required when :values is present.',
'required_with_all' => 'The :attribute field is required when :values is present.',
'required_without' => 'The :attribute field is required when :values is not present.',