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

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