doupeng8419 2017-04-09 18:53
浏览 38
已采纳

如何从数据库获取laravel 5.2中的变量后检索用户名和密码

UserLoginController.php

This is login controller to redirect to homepage after verifying username and password.

 public function userLogin(UserLoginRequest $request){
            //  return view('welcome');
        // echo "Login Page";
         $input = Input::all();
         $data = User::get(['name','password'])->where('name',$input['name'])
         ->where('password',$input['password']);
         $datas = collect($data);
         //What should I do here for matching username and password and redirect to  another page.
         dd($datas);
    } 

Output:This is the output after dumping variabl $datas

Collection {#157 ▼
      #items: array:1 [▼
        0 => User {#187 ▼
          #fillable: array:3 [▶]
          #hidden: array:2 [▶]
          #connection: null
          #table: null
          #primaryKey: "id"
          #keyType: "int"
          #perPage: 15
          +incrementing: true
          +timestamps: true
          #attributes: array:2 [▼
            "name" => "girdhari013"
            "password" => "girdhari@"
          ]
          #original: array:2 [▼
            "name" => "girdhari013"
            "password" => "girdhari@"
          ]
          #relations: []
          #visible: []
          #appends: []
          #guarded: array:1 [▶]
          #dates: []
          #dateFormat: null
          #casts: []
          #touches: []
          #observables: []
          #with: []
          #morphClass: null
          +exists: true
          +wasRecentlyCreated: false
        }
      ]
    }

routes.php

// This is to redirect after clicking on submit button.

 Route::any('/login-verify',[
           'uses' => 'UserLoginController@userLogin',
           'as' => 'login.form'
         ]); 
  • 写回答

2条回答 默认 最新

  • douba1617 2017-04-09 19:02
    关注
    $data = User::get(['name','password'])->where('name',$input['name'])
             ->where('password',$input['password']);
    

    must be:

    $data = User::where('name', '=', $request->input('name'))
                ->where('password', '=', \Hash::make($request->input('password')))->first();
    

    for get username or password, just do:

    $data->name
    $data->password
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 matlab yalmip kkt 双层优化问题
  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题