mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 02:56:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			451 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			451 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Requests\Api\Application\Locations;
 | 
						|
 | 
						|
use Pterodactyl\Models\Location;
 | 
						|
 | 
						|
class GetLocationRequest extends GetLocationsRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Determine if the requested location exists on the Panel.
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function resourceExists(): bool
 | 
						|
    {
 | 
						|
        $location = $this->route()->parameter('location');
 | 
						|
 | 
						|
        return $location instanceof Location && $location->exists;
 | 
						|
    }
 | 
						|
}
 |