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

35 lines
560 B
PHP
Raw Normal View History

2018-09-04 14:51:04 +00:00
<?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 [
//
];
}
}