0
我正在學習Laravel 5.2。我正在嘗試做一個表單驗證example.Have閱讀文檔的驗證和我的代碼使用創建和存儲方法使用驗證請求類正在工作。現在我試圖用相同的方法同時執行POST
和GET
。我創建了我request
類,我的規則方法定義爲這個Laravel 5.2,爲POST方法設置驗證,而不是GET
public function rules()
{
if($this->method() == 'POST'){
return [
'first_name' => 'required'
];
}else{
return [];
}
}
爲
public function create(myRequest $request){
//save and display the data
}
,但是當我打開我的方法,我得到一個空白頁說我的控制器方法聲明,forbidden
。我嘗試爲GET返回null
值,但它不起作用。
Argument 2 passed to Illuminate\Validation\Factory::make()
must be of the type array, null given
不可能做這樣的事情嗎?