Laravel 5.7 authentication without login error: Property [id] does not exist on this collection instance
up vote
0
down vote
favorite
I'm trying to force an authentication without login with Laravel 5.7 like that:
public function login()
{
$cpf = Request::only('cpf');
$user = new User;
$user = $user->where('cpf', $cpf)->get();
Auth::loginUsingId($user->id);
return redirect('/perfil');
}
And I get this error: Property [id] does not exist on this collection instance.
When I debug the model User, all the attributes are there. But when I try to get the attributes, I get this error. What I'm doing wrong?
If there's any other way to authenticate without password, It would be helpful!
php laravel-5 laravel-5.7
add a comment |
up vote
0
down vote
favorite
I'm trying to force an authentication without login with Laravel 5.7 like that:
public function login()
{
$cpf = Request::only('cpf');
$user = new User;
$user = $user->where('cpf', $cpf)->get();
Auth::loginUsingId($user->id);
return redirect('/perfil');
}
And I get this error: Property [id] does not exist on this collection instance.
When I debug the model User, all the attributes are there. But when I try to get the attributes, I get this error. What I'm doing wrong?
If there's any other way to authenticate without password, It would be helpful!
php laravel-5 laravel-5.7
Typically one would say$user = User::where('cpf', $cpf)->get();rather than instantiating a new object first. Regardless, what doesdd($user)say? More importantly, what doesdd($cpf)say? Is it a string?
– miken32
Nov 20 at 23:47
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to force an authentication without login with Laravel 5.7 like that:
public function login()
{
$cpf = Request::only('cpf');
$user = new User;
$user = $user->where('cpf', $cpf)->get();
Auth::loginUsingId($user->id);
return redirect('/perfil');
}
And I get this error: Property [id] does not exist on this collection instance.
When I debug the model User, all the attributes are there. But when I try to get the attributes, I get this error. What I'm doing wrong?
If there's any other way to authenticate without password, It would be helpful!
php laravel-5 laravel-5.7
I'm trying to force an authentication without login with Laravel 5.7 like that:
public function login()
{
$cpf = Request::only('cpf');
$user = new User;
$user = $user->where('cpf', $cpf)->get();
Auth::loginUsingId($user->id);
return redirect('/perfil');
}
And I get this error: Property [id] does not exist on this collection instance.
When I debug the model User, all the attributes are there. But when I try to get the attributes, I get this error. What I'm doing wrong?
If there's any other way to authenticate without password, It would be helpful!
php laravel-5 laravel-5.7
php laravel-5 laravel-5.7
asked Nov 20 at 23:36
Natan Rocha Batista
52
52
Typically one would say$user = User::where('cpf', $cpf)->get();rather than instantiating a new object first. Regardless, what doesdd($user)say? More importantly, what doesdd($cpf)say? Is it a string?
– miken32
Nov 20 at 23:47
add a comment |
Typically one would say$user = User::where('cpf', $cpf)->get();rather than instantiating a new object first. Regardless, what doesdd($user)say? More importantly, what doesdd($cpf)say? Is it a string?
– miken32
Nov 20 at 23:47
Typically one would say
$user = User::where('cpf', $cpf)->get(); rather than instantiating a new object first. Regardless, what does dd($user) say? More importantly, what does dd($cpf) say? Is it a string?– miken32
Nov 20 at 23:47
Typically one would say
$user = User::where('cpf', $cpf)->get(); rather than instantiating a new object first. Regardless, what does dd($user) say? More importantly, what does dd($cpf) say? Is it a string?– miken32
Nov 20 at 23:47
add a comment |
3 Answers
3
active
oldest
votes
up vote
0
down vote
accepted
If cpf is a unique column, then the following will return the object you're looking for:
$user = User::where('cpf', $cpf)->first();
If you do ->get() as in your code, you'll get a Collection with exactly one object in it, and will need to do $user->first()->id.
https://laravel.com/api/5.6/Illuminate/Database/Eloquent/Builder.html#method_get
add a comment |
up vote
0
down vote
You aren't using $user for anything else in the method, so you don't really need that object. You can use the value() method instead to get the id directly from the query.
public function login()
{
$cpf = Request::only('cpf');
// value() fetches the value of the specified column from the first row of query results
$id = User::where('cpf', $cpf)->value('id');
Auth::loginUsingId($id);
return redirect('/perfil');
}
I'm not really sure about the authentication part, though.
add a comment |
up vote
0
down vote
public function login()
{
$cpf = Request::only('cpf');
$user = User::where('cpf', $cpf)->first();
auth()->loginUsingId($user->id);
return redirect('/perfil');
}
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
If cpf is a unique column, then the following will return the object you're looking for:
$user = User::where('cpf', $cpf)->first();
If you do ->get() as in your code, you'll get a Collection with exactly one object in it, and will need to do $user->first()->id.
https://laravel.com/api/5.6/Illuminate/Database/Eloquent/Builder.html#method_get
add a comment |
up vote
0
down vote
accepted
If cpf is a unique column, then the following will return the object you're looking for:
$user = User::where('cpf', $cpf)->first();
If you do ->get() as in your code, you'll get a Collection with exactly one object in it, and will need to do $user->first()->id.
https://laravel.com/api/5.6/Illuminate/Database/Eloquent/Builder.html#method_get
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
If cpf is a unique column, then the following will return the object you're looking for:
$user = User::where('cpf', $cpf)->first();
If you do ->get() as in your code, you'll get a Collection with exactly one object in it, and will need to do $user->first()->id.
https://laravel.com/api/5.6/Illuminate/Database/Eloquent/Builder.html#method_get
If cpf is a unique column, then the following will return the object you're looking for:
$user = User::where('cpf', $cpf)->first();
If you do ->get() as in your code, you'll get a Collection with exactly one object in it, and will need to do $user->first()->id.
https://laravel.com/api/5.6/Illuminate/Database/Eloquent/Builder.html#method_get
answered Nov 20 at 23:55
Eric Vautier
142
142
add a comment |
add a comment |
up vote
0
down vote
You aren't using $user for anything else in the method, so you don't really need that object. You can use the value() method instead to get the id directly from the query.
public function login()
{
$cpf = Request::only('cpf');
// value() fetches the value of the specified column from the first row of query results
$id = User::where('cpf', $cpf)->value('id');
Auth::loginUsingId($id);
return redirect('/perfil');
}
I'm not really sure about the authentication part, though.
add a comment |
up vote
0
down vote
You aren't using $user for anything else in the method, so you don't really need that object. You can use the value() method instead to get the id directly from the query.
public function login()
{
$cpf = Request::only('cpf');
// value() fetches the value of the specified column from the first row of query results
$id = User::where('cpf', $cpf)->value('id');
Auth::loginUsingId($id);
return redirect('/perfil');
}
I'm not really sure about the authentication part, though.
add a comment |
up vote
0
down vote
up vote
0
down vote
You aren't using $user for anything else in the method, so you don't really need that object. You can use the value() method instead to get the id directly from the query.
public function login()
{
$cpf = Request::only('cpf');
// value() fetches the value of the specified column from the first row of query results
$id = User::where('cpf', $cpf)->value('id');
Auth::loginUsingId($id);
return redirect('/perfil');
}
I'm not really sure about the authentication part, though.
You aren't using $user for anything else in the method, so you don't really need that object. You can use the value() method instead to get the id directly from the query.
public function login()
{
$cpf = Request::only('cpf');
// value() fetches the value of the specified column from the first row of query results
$id = User::where('cpf', $cpf)->value('id');
Auth::loginUsingId($id);
return redirect('/perfil');
}
I'm not really sure about the authentication part, though.
answered 2 days ago
Don't Panic
27.7k93554
27.7k93554
add a comment |
add a comment |
up vote
0
down vote
public function login()
{
$cpf = Request::only('cpf');
$user = User::where('cpf', $cpf)->first();
auth()->loginUsingId($user->id);
return redirect('/perfil');
}
add a comment |
up vote
0
down vote
public function login()
{
$cpf = Request::only('cpf');
$user = User::where('cpf', $cpf)->first();
auth()->loginUsingId($user->id);
return redirect('/perfil');
}
add a comment |
up vote
0
down vote
up vote
0
down vote
public function login()
{
$cpf = Request::only('cpf');
$user = User::where('cpf', $cpf)->first();
auth()->loginUsingId($user->id);
return redirect('/perfil');
}
public function login()
{
$cpf = Request::only('cpf');
$user = User::where('cpf', $cpf)->first();
auth()->loginUsingId($user->id);
return redirect('/perfil');
}
answered 2 days ago
Truong Dang
49429
49429
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53403227%2flaravel-5-7-authentication-without-login-error-property-id-does-not-exist-on%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Typically one would say
$user = User::where('cpf', $cpf)->get();rather than instantiating a new object first. Regardless, what doesdd($user)say? More importantly, what doesdd($cpf)say? Is it a string?– miken32
Nov 20 at 23:47