divineomega / laravel-natural-where
Laravel Natural Where extends the Laravel query builder to allow expressing of where operators in natural language.
Fund package maintenance!
DivineOmega
Installs: 1 589
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 3
Forks: 3
Open Issues: 1
Requires
- php: >=7.1
- laravel/framework: ^5.6||^6.0||^7.0||^8.0
This package is auto-updated.
Last update: 2024-10-10 18:21:02 UTC
README
Laravel Natural Where extends the Laravel query builder to allow expressing of where operators in natural language.
Installation
To install Laravel Natural Where, run the following command from the root of your project.
composer require divineomega/laravel-natural-where
Usage
See the basic usage example below.
$query = \App\User::query() ->naturalWhere('created_at', 'is between the years', ['2018', '2020']) ->naturalWhere('email', 'contains the word', 'jordan') ->naturalWhere('name', 'is not', 'Jordan Smith') ->naturalWhere('id', 'is one of the following', [1, 2, 3]) ->get();
This example will produce the following SQL query.
select * from `users` where (`created_at` >= '2018' and `created_at` <= '2020') and `email` LIKE '%jordan%' and `name` != 'Jordan Smith' and `id` in (1, 2, 3)