First, install the package through Composer.
composer require theamasoud/laravel-searchor add this in your project's composer.json file .
"require": {
"theamasoud/laravel-search": "1.*",
}Add the Searchable trait to your model:
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use TheAMasoud\LaravelSearch\Searchable;
class Message extends Model
{
use Searchable;
protected $fillable = ['name','email','subject','message'];
}first how to make a normel search or fillter, you should use search() method.
and you should pass a two parameters column you need to search or fillter in and the request key thet come from your request
$messages = Message::search('name','search')->get();- In this example I am trying to search or filter in
namecolumn in messages table and the data I will search about it's come from request keysearchlike:($request->search)
By multiple search you can search in multiple columns and multiple values from request.
how to make a multiple search or fillter, you should use searchMultiple() method.
and you should pass a one array parameter column you need to search or fillter in array key and the request key thet come from your request as a value of key like:['name'=>'search_name','bio'=>'search_bio']
$messages = Message::searchMultiple(['title'=>'search_title','description'=>'search_desc'])->get();- In this example I am trying to search or filter in
titlecolumn in messages table and the data I will search about it's come from request keysearch_titlelike:($request->search)etc... withdescription
By search in multiple you can search in multiple columns and one value from request.
how to make a search in multiple or fillter, you should use searchInMultiple() method.
and you should pass a two parameters columns you need to search or fillter in and the request key thet come from your request as a value of key
$messages = Message::searchInMultiple(['title','description','etc...'],'search')->get();- In this example I am trying to search or filter in
titleanddescriptioncolumn in messages table and the data I will search about it's come from request keysearchlike:($request->search)
By search in json you can search in json column and value from request.
how to make a search in multiple or fillter, you should use jsonSearch() method.
and you should pass a two parameters column you need to search or fillter in and the request key thet come from your request as a value of key
{
"ar":"نص عربي",
"en":"English text"
}$messages = Message::jsonSearch('title->ar','search')->get();- In this example I am trying to search or filter in
titlecolumn in messages table and the data I will search about it's come from request keysearchlike:($request->search)

