phpvms/app/Http/Requests/CreateRankRequest.php

31 lines
498 B
PHP
Raw Normal View History

2017-06-22 01:10:25 +08:00
<?php
namespace App\Http\Requests;
2017-06-22 02:44:30 +08:00
use App\Models\Rank;
use Illuminate\Foundation\Http\FormRequest;
2017-06-22 01:10:25 +08:00
class CreateRankRequest extends FormRequest
2017-06-22 01:10:25 +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()
{
2017-06-22 02:44:30 +08:00
return Rank::$rules;
2017-06-22 01:10:25 +08:00
}
}