boxed-code / laravel-scout-database by olsgreen

Generic database driver for laravel scout.
18,689
11
3
Package Data
Maintainer Username: olsgreen
Maintainer Contact: oliver@boxedcode.co.uk (Oliver Green)
Package Create Date: 2017-07-07
Package Last Update: 2021-12-31
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-03-27 03:03:48
Package Statistics
Total Downloads: 18,689
Monthly Downloads: 535
Daily Downloads: 19
Total Stars: 11
Total Watchers: 3
Total Forks: 3
Total Open Issues: 0

Laravel Scout Database Driver

Software License Build Status

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.

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).