2017 © Pedro Peláez
 

library laravel-dbsearch

image

brunoquaresma/laravel-dbsearch

  • Thursday, May 29, 2014
  • by BrunoQuaresma
  • Repository
  • 3 Watchers
  • 10 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

LaravelDBSearch

A simple package for full text search using the Laravel's Eloquent., (*1)

  1. Required setup
  2. Basic usage
  3. Use join

Required setup

In the require key of composer.json file add the following, (*2)

"brunoquaresma/laravel-dbsearch": "dev-master"

Run the Composer update comand, (*3)

$ composer update

In your config/app.php add 'Brunoquaresma\LaravelDBSearch\LaravelDBSearchServiceProvider' to the end of the $providers array, (*4)

'providers' => array(

    'Illuminate\Foundation\Providers\ArtisanServiceProvider',
    'Illuminate\Auth\AuthServiceProvider',
    ...
    'Brunoquaresma\LaravelDBSearch\LaravelDBSearchServiceProvider',

),

At the end of config/app.php add 'LaravelDBSearch' => 'Brunoquaresma\LaravelDBSearch\Facades\LaravelDBSearch' to the $aliases array, (*5)

'aliases' => array(

    'App'        => 'Illuminate\Support\Facades\App',
    'Artisan'    => 'Illuminate\Support\Facades\Artisan',
    ...
    'LaravelDBSearch' => 'Brunoquaresma\LaravelDBSearch\Facades\LaravelDBSearch'

),

Basic usage

For this example we use a course model., (*6)

$courses =  LaravelDBSearch::model('Course')            
                ->field(array('name', 'description'))
                ->query('php')
                ->get();
  1. model() - Set the default model for the search.
  2. field() - Set the search fields by array or a string value if have only one field.
  3. query() - Set the search query value.
  4. get() - Get the results of search.

Use join

Get the courses where the owner have a name with John., (*7)

$courses =  LaravelDBSearch::model('Course')            
                ->field(array('name', 'description', 'first_name', 'last_name', 'username'))
                ->join('courses.*', 'users', 'courses.user_id', '=', 'users.id')
                ->query('John')
                ->get();

The Versions

29/05 2014

dev-master

9999999-dev

  Sources   Download

The Requires

 

by Bruno Quaresma