Snippets tagged “where”
3 snippets use this tag.
- Codeigniter's `where` and `or_where`PHP
In CodeIgniter, the where method on the database class is used to add a WHERE clause to your query.
- Laravel - where less/greater than date syntaxPHP
In Laravel, you can use the where method on a query builder or an Eloquent model to filter records based on a date column using less than or greater than operators.
- Laravel Check If Related Model ExistsPHP
In Laravel, you can use the exists method on a relationship to check if it has any related models.