Relative Content

Tag Archive for phplaraveldatetimepicker

Way to add one more day to the PHP code by modifying the existing code [duplicate]

This question already has answers here: Adding one day to a date (14 answers) Closed 3 hours ago. This post was edited and submitted for review 3 hours ago. 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 […]