mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 02:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			400 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			400 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Requests\Admin\Node;
 | |
| 
 | |
| use App\Http\Requests\Admin\AdminFormRequest;
 | |
| 
 | |
| class AllocationFormRequest extends AdminFormRequest
 | |
| {
 | |
|     public function rules(): array
 | |
|     {
 | |
|         return [
 | |
|             'allocation_ip' => 'required|string',
 | |
|             'allocation_alias' => 'sometimes|nullable|string|max:191',
 | |
|             'allocation_ports' => 'required|array',
 | |
|         ];
 | |
|     }
 | |
| }
 | 
