public function auth()
 {
     $email = Request::post('email');
     $passwd = Request::post('password');
     Session::auth($email, $passwd);
 }