Support the ongoing development of Laravel.io →
posted 10 years ago
Requests

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.

Last updated 2 years ago.
0

$collections in your first example is an instance of query builder, try this:

$collections = Collection::where('user_id', $user->id)->get();
Last updated 2 years ago.
0

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!

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

stueynet stueynet Joined 21 May 2014

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.

© 2025 Laravel.io - All rights reserved.