35 lines
560 B
PHP
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 [
|
|
//
|
|
];
|
|
}
|
|
}
|