我有这条路线
Route::get('/mailable/{mail}', [TestController::class, 'mailable'])
->where('mail', '(verification)');
基于{mail}url 的 od 我想从我的控制器返回特定的类
public function mailable($mail)
{
if ($mail == 'verification') {
return new Verification();
}
}
有没有更好的方法来做到这一点,否则我需要发表数千条if声明。或者我应该使用switch?
我也尝试连接$mail返回()类,但它不起作用
MM们