2017-09-14 19:21:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace $NAMESPACE$;
|
|
|
|
|
|
2020-04-04 16:43:00 +00:00
|
|
|
use App\Abstracts\Http\FormRequest;
|
2017-09-14 19:21:00 +00:00
|
|
|
|
|
|
|
|
class $CLASS$ extends FormRequest
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
|
*
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function rules()
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
//
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|