使用 create 保存數據的時候需要在 Student Model 添加
protected $fillable = ['name', 'age', 'sex'];
不然會報錯 "MassAssignmentException"
protected $fillable = ['name', 'age', 'sex'];
不然會報錯 "MassAssignmentException"
2016-12-05
4分52秒的時候 Route::any('response','StudentController@response'); 存在中間件 web 的群組中。
估計是老師之前忘記講了,不然重定向傳值不了的
估計是老師之前忘記講了,不然重定向傳值不了的
2016-12-05