mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 11:06:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Models\Traits;
 | 
						|
 | 
						|
use Pterodactyl\Extensions\Illuminate\Database\Eloquent\Builder;
 | 
						|
 | 
						|
trait Searchable
 | 
						|
{
 | 
						|
    public function newEloquentBuilder($query)
 | 
						|
    {
 | 
						|
        return new Builder($query);
 | 
						|
    }
 | 
						|
}
 |