misc_pterodactyl-panel/app/Http/Requests/Api/Application/Eggs/GetEggRequest.php
2021-01-08 09:26:57 -07:00

20 lines
401 B
PHP

<?php
namespace Pterodactyl\Http\Requests\Api\Application\Eggs;
use Pterodactyl\Models\Egg;
class GetEggRequest extends GetEggsRequest
{
/**
* Determine if the requested egg exists on the Panel.
*
* @return bool
*/
public function resourceExists(): bool
{
$egg = $this->route()->parameter('egg');
return $egg instanceof Egg && $egg->exists;
}
}