Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Policies;use App\Models\ActionCategory;use App\Models\BackendUser;use Illuminate\Auth\Access\HandlesAuthorization;class ActionCategoryPolicy{use HandlesAuthorization;/*** Determine whether the user can view any models.** @param \App\Models\BackendUser $backendUser* @return \Illuminate\Auth\Access\Response|bool*/public function viewAny(BackendUser $backendUser){//}/*** Determine whether the user can view the model.** @param \App\Models\BackendUser $backendUser* @param \App\Models\ActionCategory $actionCategory* @return \Illuminate\Auth\Access\Response|bool*/public function view(BackendUser $backendUser, ActionCategory $actionCategory){//}/*** Determine whether the user can create models.** @param \App\Models\BackendUser $backendUser* @return \Illuminate\Auth\Access\Response|bool*/public function create(BackendUser $backendUser){//}/*** Determine whether the user can update the model.** @param \App\Models\BackendUser $backendUser* @param \App\Models\ActionCategory $actionCategory* @return \Illuminate\Auth\Access\Response|bool*/public function update(BackendUser $backendUser, ActionCategory $actionCategory){//}/*** Determine whether the user can delete the model.** @param \App\Models\BackendUser $backendUser* @param \App\Models\ActionCategory $actionCategory* @return \Illuminate\Auth\Access\Response|bool*/public function delete(BackendUser $backendUser, ActionCategory $actionCategory){//}/*** Determine whether the user can restore the model.** @param \App\Models\BackendUser $backendUser* @param \App\Models\ActionCategory $actionCategory* @return \Illuminate\Auth\Access\Response|bool*/public function restore(BackendUser $backendUser, ActionCategory $actionCategory){//}/*** Determine whether the user can permanently delete the model.** @param \App\Models\BackendUser $backendUser* @param \App\Models\ActionCategory $actionCategory* @return \Illuminate\Auth\Access\Response|bool*/public function forceDelete(BackendUser $backendUser, ActionCategory $actionCategory){//}}