├── .gitignore ├── LICENSE.txt ├── README.md ├── composer.json └── src └── SearchableTrait.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaslopezj/searchable/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaslopezj/searchable/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaslopezj/searchable/HEAD/composer.json -------------------------------------------------------------------------------- /src/SearchableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaslopezj/searchable/HEAD/src/SearchableTrait.php --------------------------------------------------------------------------------