I use the following construction for joining tables: with(\"attachments\", \"offers.publisher\").
public function publisher()
{
retu
Here is link that can help you:
Please check this:
Eloquent where condition based on a "belongs to" relationship
Also you can do like this:
Suppose you have a post modal and each post has many comment. So can get the condition matching post comments by as following with where conditions
public function comments()
{
return $this->hasMany('App\Comment');
}
App\Post::find(1)->comments()->where('title', 'foo')->get();
Thanks