我想用Where
在某个表中选择id
,而不是WhereNotIn
在另一个表中选择
public function showbydate($id)
{
$bookappoitm=DB::table('times')
->where('times.Dates_id','=',1)
->whereNOTIn('times.id',function($query){
$query->select('times_id')->from('bookappoitments')
->where('users_id',Auth::user()->id);
})
->get();
return view('admin.Booking.addappointment', compact('bookappoitm'));
}
我可以使用$id
代替数字“ 1”
答案 0 :(得分:0)