PP
Size: a a a
PP
AP
VY
VY
class BigSumRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return false;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//
];
}
}
AP
AP
Determine if the user is authorized to make this request.
AP
return false;
VY
return false;
AP
VY
PP
SK
Route::group([
'middleware' => ['api' => ['except' => 'login']],
PP
VY
VY
PP
VY