nicolaslopezj / searchable

A php trait to search laravel models
MIT License
2.01k stars 291 forks source link

Wat the meaning of the params? #142

Open Ucer opened 7 years ago

Ucer commented 7 years ago

What the meaning of the param ?

        'columns' => [
            'articles.slug' => 5 ,
            'articles.title' => 2,
            'articles.content' => 1,
        ],

I don't understand the meaning of the number's values.And how to define them.

kirkaracha commented 6 years ago

Columns and their priority in search results. Columns with higher values are more important. Columns with equal values have equal importance.