2017-08-17 56 views

回答

0

沒有名爲maz規則。我猜你的意思是max規則。
在驗證中將maz替換爲max

public function store(Request $request){ 
    $this->validate($request,[ 
     'name' => 'required|max:255', 
    ]); 
} 
相關問題