0
私は左結合でいくつかのフィルタを追加したいのですが、親切に私を助けてくれる方法がわかりません。また、Eloquentでどのようにこのクエリを作成できるのか教えてください。私のクエリは以下の通りである:laravelの結合5.3単純なEloquent
select * from `users`
join `halls` on `halls`.`user_id` = `users`.`id`
left join `bookings` on `bookings`.`hall_id` = `halls`.`id` AND month(`bookings`.`date`) = 2 and day(`bookings`.`date`) = 4 and year(`bookings`.`date`) = 2017
join `user_role` on `user_role`.`user_id` = `users`.`id`
join `roles` on `roles`.`id` = `user_role`.`role_id`
where
`roles`.`id` = 2 AND
(`bookings`.`id` is null OR `bookings`.`status` = 0)
group by users.id
ユーザーと役割は、多くのと会場にユーザーとホール1、多くの関係に多くを持っており、予約も1多くの関係 ユーザーモデル関係
/**
* Many-to-Many relations with Role.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function roles(){
return $this->belongsToMany(Role::class, 'user_role', 'user_id', 'role_id')->select('roles.name');
}
/**
* One-to-Many relations with halls.
*
* @return \Illuminate\Database\Eloquent\Relations\hasMany
*/
public function halls(){
return $this->hasMany(Hall::class);
}
ホールを持っていますモデル関係
public function user(){
return $this->belongsTo(User::class, 'user_id', 'id');
}
public function bookings(){
return $this->hasMany(Booking::class);
}
予約モデルRealtion
public function hall(){
return $this->belongsTo(Hall::class)->distinct();
}
定義したモデルと関係を貼り付けることができますか? –