middleware('guest')->except('logout'); }*/ public function __construct() { $this->middleware('guest', ['except' => 'destroy']); } public function create() { return view('auth.login.create'); } public function store() { if (!auth()->attempt(request(['email', 'password']))) { flash('Please check your credentials and try again.')->error(); return back(); } if (auth()->user()->customer) { return redirect('/customers'); } return redirect('/'); } public function destroy() { auth()->logout(); return redirect('auth/login'); } }