Download the PHP package ahmetsabri/fatih-laravel-search without Composer
On this page you can find all versions of the php package ahmetsabri/fatih-laravel-search. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ahmetsabri/fatih-laravel-search
More information about ahmetsabri/fatih-laravel-search
Files in ahmetsabri/fatih-laravel-search
Download ahmetsabri/fatih-laravel-search
More information about ahmetsabri/fatih-laravel-search
Files in ahmetsabri/fatih-laravel-search
Vendor ahmetsabri
Package fatih-laravel-search
Short Description A Laravel package for adding search functionality to models.
License MIT
Homepage https://github.com/ahmetsabri/fatih-laravel-search
Package fatih-laravel-search
Short Description A Laravel package for adding search functionality to models.
License MIT
Homepage https://github.com/ahmetsabri/fatih-laravel-search
Please rate this library. Is it a good library?
Informations about the package fatih-laravel-search
Fatih Laravel Search
A laravel package to search via your models .
installation :
Usage :
- use
Searchabletrait in your model - Define
$searchableproperty in your model to select which columns to search in
Example :
use Ahmetsabri\FatihLaravelSearch\Searchable;
class User extends Model {
use Searchable ;
protected $searchable = ['name', 'posts.title'];
public function posts(){
return $this->hasMany(Post::class);
}All versions of fatih-laravel-search with dependencies
PHP Build Version
Package Version
The package ahmetsabri/fatih-laravel-search contains the following files
Loading the files please wait ...