ユーザ用ツール

サイト用ツール


プログラム言語:php:laravel:バリデーション:requiredifを使って新規登録の場合のみ必須チェックを行う

差分

このページの2つのバージョン間の差分を表示します。

この比較画面にリンクする

プログラム言語:php:laravel:バリデーション:requiredifを使って新規登録の場合のみ必須チェックを行う [2021/02/25 18:45]
humolife 作成
プログラム言語:php:laravel:バリデーション:requiredifを使って新規登録の場合のみ必須チェックを行う [2021/02/25 18:48] (現在)
humolife
行 36: 行 36:
  
         // パスワードの入力があった場合のみ暗号化して保存         // パスワードの入力があった場合のみ暗号化して保存
-        if (!is_null($request->password) && strlen($request->password) > 0) {+        if (!is_null($request->password) 
 +            && strlen($request->password) > 0 
 +        ) {
             $user->password = bcrypt($request->password);             $user->password = bcrypt($request->password);
         }         }
行 57: 行 59:
 class UserRequest extends FormRequest class UserRequest extends FormRequest
 { {
-    /** 
-     * Determine if the user is authorized to make this request. 
-     * 
-     * @return bool 
-     */ 
     public function authorize()     public function authorize()
     {     {
行 67: 行 64:
     }     }
  
-    /** 
-     * Get the validation rules that apply to the request. 
-     * 
-     * @return array 
-     */ 
     public function rules()     public function rules()
     {     {
行 79: 行 71:
             'password'              => [             'password'              => [
                 'bail',                 'bail',
 +                // $this->user が null ならば必須
                 Rule::requiredIf(is_null($this->user ?? false)),                 Rule::requiredIf(is_null($this->user ?? false)),
                 'between:8,32',                 'between:8,32',
プログラム言語/php/laravel/バリデーション/requiredifを使って新規登録の場合のみ必須チェックを行う.1614246333.txt.gz · 最終更新: 2021/02/25 18:45 by humolife