Skip to content

Instantly share code, notes, and snippets.

@oliuz
Forked from calebporzio/eloquent_search.php
Created August 17, 2019 23:58
Show Gist options
  • Save oliuz/09b2620052ad8abb1b362425b9468b05 to your computer and use it in GitHub Desktop.
Save oliuz/09b2620052ad8abb1b362425b9468b05 to your computer and use it in GitHub Desktop.
// Add this to the "boot()" method of your "AppServiceProvider"
<?php
\Illuminate\Database\Eloquent\Builder::macro('search', function ($name, $search) {
return $this->where($name, 'LIKE', $search ? '%'.$search.'%' : '');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment