I want the rows of a table which have some string 'str' present in a particular column's value.
For ex.- I want all the rows of 'User' table where 'user_name' is 'halku'.
I know about str_contains() and where(), but I want to know how to use them together.
I couldn't find any docs for something like that.
How can I achieve this ?