added authorize to form request abstract

This commit is contained in:
Denis Duliçi
2021-07-01 10:50:24 +03:00
parent 1a0642f6a6
commit 500ff054db
37 changed files with 16 additions and 348 deletions

View File

@ -32,4 +32,14 @@ abstract class FormRequest extends BaseFormRequest
$offset
);
}
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
}