*/ interface HeroSlideRepositoryInterface extends BaseRepositoryInterface { /** * @param array $filters * @return LengthAwarePaginator */ public function paginate(array $filters = [], int $perPage = 15): LengthAwarePaginator; /** * @return Collection */ public function active(): Collection; }