-
For Screen layout()
Why do partial search filters not work when there are numbers included in the string? |
Beta Was this translation helpful? Give feedback.
Answered by
tabuna
Jan 25, 2022
Replies: 1 comment 2 replies
-
This is how automatic filters work. You can change this to your own at any time. // http://example.com/demo?filter[id]=1
$model->where('id', '=', 1)
// http://example.com/demo?filter[id]=1,2,3,4,5
$model->whereIn('id', [1,2,3,4,5]);
// http://example.com/demo?filter[content.ru.name]=dwqdwq
$model->where('content->ru->name', 'like', 'dwqdwq'); |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
wsdnathan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is how automatic filters work. You can change this to your own at any time.