update deploy
This commit is contained in:
41
app/Repositories/Eloquent/PageRepository.php
Normal file
41
app/Repositories/Eloquent/PageRepository.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user