mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-04 11:21:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Requests\Staff;
 | 
						|
 | 
						|
use Illuminate\Foundation\Http\FormRequest;
 | 
						|
 | 
						|
class UserUpdate extends FormRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Get the validation rules that apply to the request.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'email' => 'required|email',
 | 
						|
            'password' => 'nullable',
 | 
						|
            'transfer_enable' => 'numeric',
 | 
						|
            'expired_at' => 'nullable|integer',
 | 
						|
            'banned' => 'required|in:0,1',
 | 
						|
            'plan_id' => 'nullable|integer',
 | 
						|
            'commission_rate' => 'nullable|integer|min:0|max:100',
 | 
						|
            'discount' => 'nullable|integer|min:0|max:100',
 | 
						|
            'u' => 'integer',
 | 
						|
            'd' => 'integer',
 | 
						|
            'balance' => 'integer',
 | 
						|
            'commission_balance' => 'integer'
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    public function messages()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'email.required' => '邮箱不能为空',
 | 
						|
            'email.email' => '邮箱格式不正确',
 | 
						|
            'transfer_enable.numeric' => '流量格式不正确',
 | 
						|
            'expired_at.integer' => '到期时间格式不正确',
 | 
						|
            'banned.required' => '是否封禁不能为空',
 | 
						|
            'banned.in' => '是否封禁格式不正确',
 | 
						|
            'plan_id.integer' => '订阅计划格式不正确',
 | 
						|
            'commission_rate.integer' => '推荐返利比例格式不正确',
 | 
						|
            'commission_rate.nullable' => '推荐返利比例格式不正确',
 | 
						|
            'commission_rate.min' => '推荐返利比例最小为0',
 | 
						|
            'commission_rate.max' => '推荐返利比例最大为100',
 | 
						|
            'discount.integer' => '专属折扣比例格式不正确',
 | 
						|
            'discount.nullable' => '专属折扣比例格式不正确',
 | 
						|
            'discount.min' => '专属折扣比例最小为0',
 | 
						|
            'discount.max' => '专属折扣比例最大为100',
 | 
						|
            'u.integer' => '上行流量格式不正确',
 | 
						|
            'd.integer' => '下行流量格式不正确',
 | 
						|
            'balance.integer' => '余额格式不正确',
 | 
						|
            'commission_balance.integer' => '佣金格式不正确'
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |