I have an app with users and collections. Both are resources and each user can create collections. I have a view the renders lists of collections. For some reason this is not returning any results:
/**
* Display the collections of a particular user.
* GET /u/{username}/collections
*
* @param str $username
* @return Response
*/
public function user($username)
{
$user = User::whereUsername($username)->firstOrFail();
$collections = Collection::where('user_id', $user->id);
return View::make('collections.index')->withCollections($collections)->with('isUser', true);
}
However this returns 3 results. All three results have a user_id of 1 and I dd($user->id()) above and it returns 1.
public function user($username)
{
$user = User::whereUsername($username)->firstOrFail();
$collections = Collection::all();
return View::make('collections.index')->withCollections($collections)->with('isUser', true);
}
Slowly going crazy.
$collections in your first example is an instance of query builder, try this:
$collections = Collection::where('user_id', $user->id)->get();
longilineo said:
$collections in your first example is an instance of query builder, try this:
$collections = Collection::where('user_id', $user->id)->get();
Thanks longilineo!
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community