mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	feature: shadowsocks and more
This commit is contained in:
		
							
								
								
									
										28
									
								
								app/Http/Requests/Admin/ServerShadowsocksUpdate.php
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										28
									
								
								app/Http/Requests/Admin/ServerShadowsocksUpdate.php
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,28 @@ | ||||
| <?php | ||||
|  | ||||
| namespace App\Http\Requests\Admin; | ||||
|  | ||||
| use Illuminate\Foundation\Http\FormRequest; | ||||
|  | ||||
| class ServerShadowsocksUpdate extends FormRequest | ||||
| { | ||||
|     /** | ||||
|      * Get the validation rules that apply to the request. | ||||
|      * | ||||
|      * @return array | ||||
|      */ | ||||
|  | ||||
|     public function rules() | ||||
|     { | ||||
|         return [ | ||||
|             'show' => 'in:0,1' | ||||
|         ]; | ||||
|     } | ||||
|  | ||||
|     public function messages() | ||||
|     { | ||||
|         return [ | ||||
|             'show.in' => '显示状态格式不正确' | ||||
|         ]; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user