phpvms/app/Http/Requests/CreateAircraftRequest.php
Nabeel S 45873431e4
Add public/private pages #641 (#644)
* Add public/private pages #641

* Cleanup the form requests
2020-03-28 13:03:52 -04:00

32 lines
588 B
PHP

<?php
namespace App\Http\Requests;
use App\Contracts\FormRequest;
use App\Models\Aircraft;
class CreateAircraftRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules(): array
{
$rules = Aircraft::$rules;
$rules['registration'] .= '|unique:aircraft';
return $rules;
}
}