repository = $repository; } /** * Delete a subuser and their associated permissions from the Panel and Daemon. * * @param \Pterodactyl\Models\Subuser $subuser */ public function handle(Subuser $subuser) { $this->repository->delete($subuser->id); } }