mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-04 11:21:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			564 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			564 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Requests;
 | 
						|
 | 
						|
use Illuminate\Foundation\Http\FormRequest;
 | 
						|
 | 
						|
class UserUpdate extends FormRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Get the validation rules that apply to the request.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'remind_expire' => 'in:0,1',
 | 
						|
            'remind_traffic' => 'in:0,1'
 | 
						|
        ];
 | 
						|
    }
 | 
						|
    
 | 
						|
    public function messages()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'show.in' => '过期提醒格式不正确',
 | 
						|
            'renew.in' => '流量提醒格式不正确'
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |