Laravel Redirect ke halaman yang dimaksud setelah mendaftar

protected $redirectTo = 'dashboard';

public function redirectTo(){
    return redirect()->intended($this->redirectTo)->getTargetUrl();
}
Amused Anteater