mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 15:46:51 +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',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |