how to check if a column has truthy value using laravel's eloquent
Suppose I have Post model that has is_verified column with smallint datatype, how can I get all records that is verified? One thing to do this is using this: Post::where('is_verified', true)->get(); The code above will produce the following query: select…