New-Thanasoft/thanasoft-back/app/Repositories/ClientGroupRepositoryInterface.php
2026-04-22 12:52:06 +03:00

13 lines
290 B
PHP

<?php
declare(strict_types=1);
namespace App\Repositories;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
interface ClientGroupRepositoryInterface extends BaseRepositoryInterface
{
public function paginate(int $perPage = 15, array $filters = []): LengthAwarePaginator;
}