Reactivate NPM, updates from peer projects

This commit is contained in:
Deon George
2020-01-21 21:06:09 +11:00
parent e62603a1b3
commit b42f9990b5
13 changed files with 11039 additions and 59990 deletions

View File

@@ -3,6 +3,7 @@
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\AuthenticatesUsers;
class LoginController extends Controller
@@ -25,7 +26,7 @@ class LoginController extends Controller
*
* @var string
*/
protected $redirectTo = '/home';
protected $redirectTo = RouteServiceProvider::HOME;
/**
* Create a new controller instance.
@@ -49,4 +50,4 @@ class LoginController extends Controller
return view('adminlte::auth.login')->with('login_note',$login_note);
}
}
}