userable_type == Admin::class; } /** * Determine whether the user can update the model. */ public function update(User $user, Subject $subject): bool { return $user->userable_type == Admin::class; } /** * Determine whether the user can delete the model. */ public function delete(User $user, Subject $subject): bool { return $user->userable_type == Admin::class; } }