isSuperAdmin($user)) { return true; } return $this->canRead($user); } public function view(User $user, Position $position): bool { if ($this->isSuperAdmin($user)) { return true; } return $this->canRead($user); } public function create(User $user): bool { if ($this->isSuperAdmin($user)) { return true; } return $this->hasFullAccess($user); } public function update(User $user, Position $position): bool { if ($this->isSuperAdmin($user)) { return true; } return $this->hasFullAccess($user); } public function delete(User $user, Position $position): bool { if ($this->isSuperAdmin($user)) { return true; } return $this->hasFullAccess($user); } public function restore(User $user, Position $position): bool { if ($this->isSuperAdmin($user)) { return true; } return $this->hasFullAccess($user); } public function forceDelete(User $user, Position $position): bool { if ($this->isSuperAdmin($user)) { return true; } return $this->canForceDelete($user); } }