14 lines
204 B
PHP
14 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Shop;
|
|
|
|
use App\Models\Shop\Article;
|
|
|
|
class Searches
|
|
{
|
|
public static function getResults($options)
|
|
{
|
|
return Articles::getArticlesToSell($options);
|
|
}
|
|
}
|