mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 01:44:45 +02: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);
|
|
}
|
|
}
|