2018-08-06 12:30:51 +00:00
|
|
|
<?php
|
|
|
|
namespace App\Http\Requests;
|
2015-07-19 06:49:24 +00:00
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
class PeriodeRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2015-07-19 06:49:24 +00:00
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'days' => 'required|integer'
|
|
|
|
];
|
|
|
|
}
|
2015-07-19 06:49:24 +00:00
|
|
|
}
|