Skip to content

sharifWebDev/sharif-laravel-smart-search

Repository files navigation

🚀 Laravel Smart Search

Laravel Smart Search is a high-performance, intelligent search package for Laravel Eloquent models. It provides automatic relation discovery, configurable search depth, multiple search modes, and optimized queries for large datasets.


✨ Key Features

  • 🔍 Smart Relation Discovery – Automatically searches through model relationships.
  • High Performance – Optimized queries with configurable limits.
  • 🎯 Multiple Search Modeslike, exact, starts_with, ends_with.
  • 🔧 Fully Configurable – Customize search behavior and priorities.
  • 📚 Priority Columns – Define columns to prioritize for better results.
  • 🛡️ Type Safe – Full type hints, PHPStan ready.
  • 🧪 Fully Tested – Comprehensive test coverage included.
  • 🔌 Laravel Native – Seamless integration with Eloquent models.

📦 Installation

Requirements

  • PHP 8.1+
  • Laravel 10.x or 11.x

Via Composer

composer require sharif/laravel-smart-search

``

Publish Configuration (Optional)

php artisan vendor:publish --provider="Sharifuddin\\LaravelSmartSearch\\SmartSearchServiceProvider" --tag="smart-search-config"

🎯 Quick Start

1️⃣ Use the Trait

Add the SmartSearch trait to your Eloquent models:

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Sharifuddin\LaravelSmartSearch\Traits\SmartSearch;

class Product extends Model
{
    use SmartSearch;
}

2️⃣ Basic Search Usage

// Simple search
$products = Product::applySmartSearch('laptop')->get();

// Paginated search
$products = Product::applySmartSearch($request->input('search'))->paginate(15);

// Search with relations
$products = Product::applySmartSearch('apple')->with('brand', 'categories')->get();

🔧 Configuration

After publishing, edit config/smart-search.php to customize behavior:

return [
    'defaults' => [
        'mode' => 'like',
        'deep' => true,
        'max_relation_depth' => 2,
        'search_operator' => 'or',
    ],

    'columns' => [
        'excluded' => [
            'id', 'created_at', 'updated_at', 'deleted_at',
            'password', 'remember_token', 'email_verified_at'
        ],
        'prioritized' => ['name', 'title', 'code', 'email'],
        'max_per_table' => 10,
    ],

    'relations' => [
        'auto_discover' => true,
        'max_depth' => 2,
        'excluded' => ['password', 'secret', 'tokens'],
    ],

    'performance' => [
        'max_join_tables' => 5,
        'chunk_search' => false,
        'chunk_size' => 1000,
    ],
];

💡 Usage Examples

Basic Search

$users = User::applySmartSearch('john')->get();
$products = Product::applySmartSearch('wireless keyboard')->paginate(20);

Advanced Search with Options

$results = Product::applySmartSearch(
    search: 'laptop',
    columns: ['name', 'sku', 'description'],
    options: [
        'mode' => 'like',
        'deep' => true,
        'max_relation_depth' => 1
    ]
)->get();

Relation Search

$posts = Post::applySmartSearch('laravel tips')->with('author', 'tags', 'comments')->get();

Multiple Search Modes

// Like (default)
$results = Product::applySmartSearch('phone');

// Exact match
$results = User::applySmartSearch('admin@example.com', [], ['mode' => 'exact']);

// Starts with
$results = Product::applySmartSearch('APP', [], ['mode' => 'starts_with']);

// Ends with
$results = Product::applySmartSearch('001', [], ['mode' => 'ends_with']);

⚡ Performance Optimization

  • Add indexes for frequently searched columns.
  • Limit max_relation_depth for large datasets.
  • Disable deep option for simple queries.
  • Enable chunk_search in config for large tables.

🧪 Testing

# Run all tests
composer test

# Run tests with coverage
composer test-coverage

🤝 Contributing

  1. Fork the repository.
  2. Clone your fork: git clone https://github.com/your-username/laravel-smart-search.
  3. Install dependencies: composer install.
  4. Run tests: composer test.

See CONTRIBUTING.md for more details.


📄 License

MIT License. See LICENSE.md.


Laravel Smart Search - Intelligent search for intelligent applications.

GitHubPackagistIssuesDiscussions

```

About

laravel-smart-search Package

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages