public function doctorToday(Request $request){
$doctors = Appointment::with('doctor')->whereDate('date',date('Y-m-d'))->get();
return $doctors;
May I know how to implement one more day to the code? I want to get the tommorow's date instead of today's.