2017-06-09 09:37:51 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
|
|
|
use App\Models\Aircraft;
|
2018-02-21 12:33:09 +08:00
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
2017-06-09 09:37:51 +08:00
|
|
|
|
|
|
|
class CreateAircraftRequest extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2017-06-09 09:37:51 +08:00
|
|
|
* @return bool
|
|
|
|
*/
|
2018-03-23 06:17:37 +08:00
|
|
|
public function authorize(): bool
|
2017-06-09 09:37:51 +08:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2017-06-09 09:37:51 +08:00
|
|
|
* @return array
|
|
|
|
*/
|
2018-03-23 06:17:37 +08:00
|
|
|
public function rules(): array
|
2017-06-09 09:37:51 +08:00
|
|
|
{
|
2018-03-23 06:17:37 +08:00
|
|
|
$rules = Aircraft::$rules;
|
|
|
|
$rules['registration'] .= '|unique:aircraft';
|
|
|
|
return $rules;
|
2017-06-09 09:37:51 +08:00
|
|
|
}
|
|
|
|
}
|