Support the ongoing development of Laravel.io →
Authentication Session Architecture
Last updated 10 months ago.
0

Also searching for the best way to do this in Laravel 5.

0

Depending on your overall architecture you could define a scope for the current user:

public function scopeCurrentUser($query)
{
    return $query->where('user_id', Auth::user()->id);
}

You can then apply the scope like this:

public function find($id)
{
    return Note::currentUser()->find($id);
}
Last updated 8 years ago.
0

Sign in to participate in this thread!

Full Stack Europe

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2023 Laravel.io - All rights reserved.