mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-26 11:02:31 +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);
|
|
}
|
|
}
|