https://github.com/technote-space/laravel-search-helper
Search helper for Laravel
https://github.com/technote-space/laravel-search-helper
laravel search
Last synced: 5 months ago
JSON representation
Search helper for Laravel
- Host: GitHub
- URL: https://github.com/technote-space/laravel-search-helper
- Owner: technote-space
- License: mit
- Created: 2019-08-16T08:24:04.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-07-22T13:53:22.000Z (over 2 years ago)
- Last Synced: 2025-07-14T07:36:48.722Z (5 months ago)
- Topics: laravel, search
- Language: PHP
- Homepage:
- Size: 976 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.ja.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Laravel Search Helper
[](https://github.com/technote-space/laravel-search-helper/actions)
[](https://codecov.io/gh/technote-space/laravel-search-helper)
[](https://www.codefactor.io/repository/github/technote-space/laravel-search-helper)
[](https://github.com/technote-space/laravel-search-helper/blob/main/LICENSE)
[](http://php.net/)
*Read this in other languages: [English](README.md), [日本語](README.ja.md).*
Laravel用検索ヘルパー
[Packagist](https://packagist.org/packages/technote/laravel-search-helper)
## Table of Contents
Details
- [インストール](#%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB)
- [使用方法](#%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95)
- [Author](#author)
## インストール
```
composer require technote/laravel-search-helper
```
## 使用方法
1. `Searchable Contract` と `Searchable Trait` を実装
1. `setConditions` メソッド を実装
```php
each(function ($search) use ($query) {
$query->where(function ($builder) use ($search) {
/** @var Builder $builder */
$builder->where('items.name', 'like', "%{$search}%");
});
});
}
}
}
```
1. `search`メソッドを呼び出し
```php
[
'test',
],
'ids' => [1, 2, 3],
])->get();
```
## Author
[GitHub (Technote)](https://github.com/technote-space)
[Blog](https://technote.space)