Frontend Tools
Templates & Starters
Ecommerce Starter
Starter for product search powered by Algolia InstantSearch
- angular
INSTALL
1composer require algolia/search-bundle:4.0.0
INDEX
1algolia_search: 2 indices: 3 - name: posts 4 class: App\Entity\Post 5 - name: comments 6 class: App\Entity\Comment 7 8$searchService->index($entityManager, $postsAndComments);
SEARCH
1$em = $this->getDoctrine()->getManagerForClass(Post::class); 2$posts = $this->searchService->search($em, Post::class, 'query');