tethys/app/Http/Requests/Pages/UpdatePageRequest.php

36 lines
634 B
PHP
Raw Normal View History

2018-09-06 15:58:54 +00:00
<?php
namespace App\Http\Requests\Pages;
use App\Http\Requests\Request;
/**
* Class UpdatePageRequest.
*/
class UpdatePageRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
2018-11-13 16:21:58 +00:00
return true;
//return access()->allow('edit-page');
2018-09-06 15:58:54 +00:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2018-11-13 16:21:58 +00:00
'en_title' => 'required|max:191'
// 'description_en' => 'required'
2018-09-06 15:58:54 +00:00
];
}
}