Support the ongoing development of Laravel.io →
posted 10 years ago
Eloquent
Last updated 2 years ago.
0
Solution

this should work if your relationships are setup correctly

$note = Note::findOrFail(intval($id));

foreach ($note->labels as $noteLabel)
{
	$noteLabels[] = $noteLabel->id; // Label
}

$labels = Label::whereNotIn('id', $noteLabels)->orderBy('name', 'asc')->get();
Last updated 2 years ago.
0

Oh my God. I'm too tired or just stupid. Maybe both, I absolutely forgot about this. Thank you :)

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Sobak sobak Joined 7 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.

© 2024 Laravel.io - All rights reserved.