1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| <?php
return [ 'meilisearch' => [ 'host' => env('MEILISEARCH_HOST', 'http://localhost:7700'), 'key' => env('MEILISEARCH_KEY', null), 'indices' => [ 'products' => [ 'model' => \App\Models\Product::class, 'settings' => [ 'searchableAttributes' => ['name', 'description', 'sku'], 'filterableAttributes' => ['category_id', 'brand_id', 'price', 'status'], 'sortableAttributes' => ['price', 'created_at', 'popularity'], 'rankingRules' => [ 'words', 'typo', 'proximity', 'attribute', 'sort', 'exactness', ], 'displayedAttributes' => ['id', 'name', 'description', 'price', 'image'], 'stopWords' => ['the', 'a', 'an', 'and', 'or'], 'synonyms' => [ 'phone' => ['smartphone', 'mobile'], 'laptop' => ['notebook', 'computer'], ], ], ], 'articles' => [ 'model' => \App\Models\Article::class, 'settings' => [ 'searchableAttributes' => ['title', 'content', 'author_name'], 'filterableAttributes' => ['category_id', 'status', 'author_id'], 'sortableAttributes' => ['published_at', 'view_count'], ], ], ], ], ];
|