Support the ongoing development of Laravel.io →
Database Eloquent Packages
Last updated 1 year ago.
0

You can query relations, as described here: http://laravel.com/docs/eloquent#querying-relations

$users = User::whereHas('timeslots', function($q) use($date)
{
    $q->where('open', '1')->where('date', $date);
})->get();

Or is that not what you mean?

Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

kensim86 kensim86 Joined 23 Apr 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.