2017-06-29 08:54:05 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
|
|
|
use App\Models\PirepField;
|
2017-07-05 02:57:08 +08:00
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2017-07-05 02:57:08 +08:00
|
|
|
class CreatePirepFieldRequest extends FormRequest
|
2017-06-29 08:54:05 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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 PirepField::$rules;
|
|
|
|
}
|
|
|
|
}
|