nicolaslopezj / searchable

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

How to achieve and query #217

Closed XinJiangQingMang closed 4 years ago

XinJiangQingMang commented 4 years ago

thanks!

for example i have this table


id name age
1 jhon smith 15
2 melodic 13
3 jhon xxx 11

how to query such as 'jhon* 15'

 \App\Models\Tests::search('jhon* 15')->paginate(20)->toArray();
result: id name age
1 jhon smith 15

The results satisfy two conditions at the same time

isneezy commented 4 years ago

Please post your model definition