laravel-learn-bbs/app/Http/Requests/Api/FormRequest.php

31 lines
511 B
PHP
Raw Permalink Normal View History

2018-06-10 14:37:37 +00:00
<?php
namespace App\Http\Requests\Api;
use Illuminate\Foundation\Http\FormRequest as BaseFormRequest;
class FormRequest extends BaseFormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//
];
}
}