___ ___ _ _ _____ _
| \/ | | | | / ___| | |
| . . | ___ __| | ___| \ `--. ___ __ _ _ __ ___| |__
| |\/| |/ _ \ / _` |/ _ \ |`--. \/ _ \/ _` | '__/ __| '_ \
| | | | (_) | (_| | __/ /\__/ / __/ (_| | | | (__| | | |
\_| |_/\___/ \__,_|\___|_\____/ \___|\__,_|_| \___|_| |_|
Search a model by providing an array of attributes. Correctly builds relationships and the appropiate query. Provides inline operaters for improved user searching.
This package has been developed by H&H|Digital, an Australian botique developer. Visit us at hnh.digital.
- PHP 8.0.2
- Laravel 9
Via composer:
$ composer require hnhdigital-os/laravel-model-search ~3.0
Enable the trait on any given model.
use HnhDigital\ModelSearch\ModelTrait as ModelSearchTrait;
class SomeModel extends Model
{
use ModelSearchTrait;
}
A simple search could be:
SomeModel::search(['title' => 'Test']);
SomeModel::search(['title' => [['=', 'Test']]]);
SomeModel::search(['title' => '= Test']);
SomeModel::search(['title' => '!= Test']);
For a better look at what is possible, check out the tests/ModelTest.php
test case for an extensive list of possiblities.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.