*/ interface CategoryRepositoryInterface extends BaseRepositoryInterface { public function findBySlug(string $slug): ?Category; /** * @param array $filters * @return LengthAwarePaginator */ public function paginate(array $filters = [], int $perPage = 15): LengthAwarePaginator; }