31 lines
466 B
Plaintext
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace $NAMESPACE$;
use App\Abstracts\Http\FormRequest;
2017-09-14 22:21:00 +03:00
class $CLASS$ extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//
];
}
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
}