can((new \ReflectionClass($this))->getShortName().'.'.__FUNCTION__); } /** * Determine whether the user can update the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function update(User $user, Category $category): bool { return $user->can((new \ReflectionClass($this))->getShortName().'.'.__FUNCTION__); } /** * Determine whether the user can delete the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function delete(User $user, Category $category): bool { return $user->can((new \ReflectionClass($this))->getShortName().'.'.__FUNCTION__); } /** * Determine whether the user can restore the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function restore(User $user, Category $category): bool { return $user->can((new \ReflectionClass($this))->getShortName().'.'.__FUNCTION__); } /** * Determine whether the user can permanently delete the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function forceDelete(User $user, Category $category): bool { return $user->can((new \ReflectionClass($this))->getShortName().'.'.__FUNCTION__); } }