我在我的laravel 5.3項目中使用了這段代碼,但它說它是badcallmethodexception,我發現控制器方法在新版本中不再可用,如何編寫此代碼? 這是我的代碼:控制器方法的替代方案
Route::controller('notifications', 'NotificationController');
該控制器內部有這樣的代碼:
public function getIndex()
{
return view('notification');
}
public function postNotify(Request $request)
{
$notifyText = e($request->input('notify_text'));
}
爲我工作的感謝! –