boxed-code/laravel-scout-database

Generic database driver for laravel scout.

1.2 2021-05-23 16:12 UTC

This package is auto-updated.

Last update: 2024-02-29 02:13:01 UTC


README

Latest Stable Version Total Downloads License Tests

This is a basic database backed driver for Laravel Scout. It is intended for use during development to avoid the need to setup an elastic instance or agolia and instead uses your active database configuration.

Searchable model attributes are JSON encoded an placed in a text column for simplicity, the very primative 'like' operator is used to perform queries. It is fully functional supporting additional where clauses, etc. The driver deliberately avoides using free text queries & indexes as these are somewhat provider specific and would prevent the goal of it being able to operate with any architecture.

This driver is zero configuration, requiring you to only add the service provider & run the migration.

Requires Scout 8.x or 9.x and PHP >=7.2 or >=8.0

Installation

You can install the package via composer:

composer require boxed-code/laravel-scout-database

You must add the Scout service provider and the package service provider in your app.php config:

// config/app.php
'providers' => [
    ...
    Laravel\Scout\ScoutServiceProvider::class,
    ...
    BoxedCode\Laravel\Scout\DatabaseEngineServiceProvider::class,
],

Then run the migrations via the console

php artisan migrate

Usage

Now you can use Laravel Scout as described in the official documentation

License

The MIT License (MIT).