驗證規則大彙集

weiqier發表於2019-10-09
  1. 使用者名稱 郵箱 頭像

    public function rules()
    {
        return [
            'name' => 'required|between:3,25|regex:/^[A-Za-z0-9\-\_]+$/|unique:users,name,' . Auth::id(),
            'email' => 'required|email',
            'introduction' => 'max:80',
            'avatar' => 'mimes:jpeg,bmp,png,gif|dimensions:min_width=208,min_height=208',
        ];
    }
    
    public function messages()
    {
        return [
            'avatar.mimes' =>'頭像必須是 jpeg, bmp, png, gif 格式的圖片',
            'avatar.dimensions' => '圖片的清晰度不夠,寬和高需要 208px 以上',
            'name.unique' => '使用者名稱已被佔用,請重新填寫',
            'name.regex' => '使用者名稱只支援英文、數字、橫槓和下劃線。',
            'name.between' => '使用者名稱必須介於 3 - 25 個字元之間。',
            'name.required' => '使用者名稱不能為空。',
        ];
    }
  2. 註冊使用者名稱,郵箱,密碼
    $this->validate($request, [
        'name' => 'required|max:50',
        'email' => 'required|email|unique:users|max:255',
        'password' => 'required|confirmed|min:6'
    ]);
本作品採用《CC 協議》,轉載必須註明作者和本文連結

Practice makes perfect !

相關文章