ahmetsabri/fatih-laravel-search

A Laravel package for adding search functionality to models.

1.1.0 2023-03-10 21:28 UTC

This package is auto-updated.

Last update: 2025-03-29 00:44:02 UTC


README

A laravel package to search via your models .

installation :

composer require ahmetsabri/fatih-laravel-search

Usage :

  • use Searchable trait in your model
  • Define $searchable property 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);
  }