phpvms/app/Http/Requests/CreatePirepFieldRequest.php

30 lines
515 B
PHP
Raw Normal View History

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;
}
}