52 lines
1.1 KiB
PHP
52 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Models\Server;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class ServerRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return $this->user()->can('create', Server::class);
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'name' => [
|
|
'required',
|
|
'string',
|
|
'alpha_dash',
|
|
'max:40'
|
|
],
|
|
'provider' => [
|
|
'required',
|
|
'not_in:0',
|
|
'exists:provider_plans,id'
|
|
],
|
|
'region' => [
|
|
'required',
|
|
'not_in:0',
|
|
'exists:provider_regions,id'
|
|
],
|
|
'plan' => [
|
|
'required',
|
|
'not_in:0',
|
|
'exists:provider_plans,id'
|
|
]
|
|
];
|
|
}
|
|
}
|