phpvms/app/Http/Requests/UpdateAircraftRequest.php

30 lines
509 B
PHP
Raw Normal View History

2017-06-09 09:37:51 +08:00
<?php
namespace App\Http\Requests;
use App\Models\Aircraft;
use Illuminate\Foundation\Http\FormRequest;
2017-06-09 09:37:51 +08:00
class UpdateAircraftRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return Aircraft::$rules;
}
}