LaravelPackages.net
Acme Inc.
Toggle sidebar
syscover/pulsar-search

search engine to use with fuse.js

23
0
About syscover/pulsar-search

syscover/pulsar-search is a Laravel package for search engine to use with fuse.js. It currently has 0 GitHub stars and 23 downloads on Packagist. Install it with composer require syscover/pulsar-search. Discover more Laravel packages by syscover or browse all Laravel packages to compare alternatives.

Last updated

Pulsar Search

Total Downloads

Installation

1 - After install Laravel framework, execute on console:

composer require syscover/pulsar-search

Register service provider, on file config/app.php add to providers array

Syscover\Search\SearchServiceProvider::class,

2 - Execute publish command

php artisan vendor:publish --provider="Syscover\Search\SearchServiceProvider"

3 - To config pulsar search scout driver, set scout configuration in your .env file wit this parameter

SCOUT_DRIVER=pulsar-search

4 - How use this package

Your models configured with laravel scout will record your data in .json files inside the storage:

storage/app/public/search

Each file will have the name of the table to which it belongs, from those files you can load this data in the fuse library.js

fusejs.io

Star History Chart