laravel-scout-typesense-driver icon indicating copy to clipboard operation
laravel-scout-typesense-driver copied to clipboard

Laravel Scout Driver for Typesense

Results 17 laravel-scout-typesense-driver issues
Sort by recently updated
recently updated
newest added

Here you should add the scout metadata to the toSearchableArray output https://github.com/typesense/laravel-scout-typesense-driver/blob/cf1c1de3f9db29826890bde580c7713655ee4aef/src/Engines/TypesenseEngine.php#L86-L87

good first issue

if ($this->itemStocks->isNotEmpty()) { $extraFields['itemStocks'] = $this->itemStocks->map(function ($itemStock) { return [ 'available' => (int)$itemStock->available, 'stock_unit_code' => (string)$itemStock->stock_unit_code, 'source_warehouse_id' => (int)$itemStock->source_warehouse_id ]; })->toArray(); } When im trying to import object like this...

## Change Summary ## PR Checklist - [x] I have read and signed the [Contributor License Agreement](https://forms.gle/PZyiY5N2GDQU8GsV9).

## Description As mentioned in the docs, typesense able to search by min max value ``` Numeric Filtering: Filter documents with numeric values between a min and max value, using...

A simple query where `tag:=key1:val1` works fine as expected, but if is duplicated as `tag:=key1:val1 && tag:=key1:val1` instead we get no result but no error either.

This is an automated pull request from [Shift](https://laravelshift.com) to update your package code and dependencies to be compatible with Laravel 12.x. **Before merging**, you need to: - Checkout the `l12-compatibility`...

## Description I'm trying to use the Scout extension in my Laravel 11 project with Typesense as the search engine, but I couldn't retrieve or access the configured settings.Perhaps this...