Slide 1

Slide 1 text

No content

Slide 2

Slide 2 text

Scout Extended

Slide 3

Slide 3 text

Search using the Query Builder $query = (string) request('query'); $models = Post::query() ->where('title', 'LIKE', "%$query%") ->orWhere('body', 'LIKE', "%$query%") ->get(); return view('index', compact('models'));

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

Scout Released by Laravel in 2016 Driver based solution for adding full-text search to your Eloquent models

Slide 6

Slide 6 text

Search using the Scout $query = (string) request('query'); $models = Post::search($query)->get(); return view('index', compact('models'));

Slide 7

Slide 7 text

No content

Slide 8

Slide 8 text

Why Search Engine? Relevance & Speed

Slide 9

Slide 9 text

Scout is Engine-agnostic

Slide 10

Slide 10 text

Introducing Scout Extended It's Laravel Scout with algolia-specific features

Slide 11

Slide 11 text

DEMO 1. Improve the search experience 2. Reindex your data with Zero Downtime 3. Status overview of your indexes 4. Search amongst multiple models with aggregators

Slide 12

Slide 12 text

DEMO 1. Improve the search experience 2. Reindex your data with Zero Downtime 3. Status overview of your indexes 4. Search amongst multiple models with aggregators

Slide 13

Slide 13 text

DEMO 1. Improve the search experience 2. Reindex your data with Zero Downtime 3. Status overview of your indexes 4. Search amongst multiple models with aggregators

Slide 14

Slide 14 text

DEMO 1. Improve the search experience 2. Reindex your data with Zero Downtime 3. Status overview of your indexes 4. Search amongst multiple models with aggregators

Slide 15

Slide 15 text

DEMO 1. Improve the search experience 2. Reindex your data with Zero Downtime 3. Status overview of your indexes 4. Search amongst multiple models with aggregators

Slide 16

Slide 16 text

macros facades front-end directives and much more!

Slide 17

Slide 17 text

! Just released v0.1.0 github.com/algolia/scout-extended

Slide 18

Slide 18 text

github.com/algolia/scout-extended nunomaduro.com Twitter: @enunomaduro QUESTIONS?