tethys/app/Http/Requests/Pages/IndexPageRequest.php
2020-06-10 21:09:11 +02:00

35 lines
560 B
PHP

<?php
namespace App\Http\Requests\Pages;
use App\Http\Requests\Request;
/**
* Class IndexPageRequest.
*/
class IndexPageRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
//return access()->allow('view-page');
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//
];
}
}