42 lines
1017 B
PHP
42 lines
1017 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Eloquent;
|
|
|
|
use App\Models\Page;
|
|
use App\Repositories\Contracts\PageRepositoryInterface;
|
|
use Illuminate\Pagination\LengthAwarePaginator;
|
|
|
|
/**
|
|
* @extends BaseRepository<Page>
|
|
*/
|
|
class PageRepository extends BaseRepository implements PageRepositoryInterface
|
|
{
|
|
public function __construct(Page $model)
|
|
{
|
|
parent::__construct($model);
|
|
}
|
|
|
|
public function findBySlug(string $slug): ?Page
|
|
{
|
|
return $this->model->newQuery()
|
|
->with('blocks')
|
|
->where('slug', $slug)
|
|
->first();
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $filters
|
|
* @return LengthAwarePaginator<int, Page>
|
|
*/
|
|
public function paginate(array $filters = [], int $perPage = 15): LengthAwarePaginator
|
|
{
|
|
$query = $this->model->newQuery();
|
|
|
|
if (! empty($filters['search'])) {
|
|
$query->where('title', 'like', '%'.$filters['search'].'%');
|
|
}
|
|
|
|
return $query->latest()->paginate($perPage);
|
|
}
|
|
}
|