在控制器构造函数中授权与表单请求

Authorizing in controller constructor vs form request

我什么时候应该使用 authorizeResource 在控制器构造函数中授权 like here and when should I use Authorizing Form Requests like here

当您想要授权多个操作时,您授权了一个控制器。 authorizeResource覆盖了多个action,而form request只针对当前请求。

例如,当您只想授权存储和更新操作时,您可以使用表单请求授权,对于那些更经常使用 FormRequest 的操作。