Validate only alphanumeric characters in Laravel

后端 未结 4 569
野的像风
野的像风 2021-02-08 17:26

I have the following code in my Laravel 5 app:

public function store(Request $request){
    $this->validate($request,          


        
4条回答
  •  伪装坚强ぢ
    2021-02-08 18:17

    use laravel rule,

        public function store(Request $request){
        $this->validate($request, ['filename' => 'alpha_dash']);
    }
    

    Laravel validation rule for alpha numeric,dashes and undescore

提交回复
热议问题