请在计时后尝试在 Laravel7 中重定向页面,例如,一旦时间为 04:05,页面应重定向。
我在下面尝试了这个,但没有奏效。
public function countdown(){
$currentdate = date("d-m-Y h:i:s");
$futuredate = "02-05-2020 18:4:25";
if($currentdate == $futuredate){
return redirect()->route('welcome');
}
}
谁能帮助我如何实现这一目标?