PHP code example of jhacobs / laravel-searchable
1. Go to this page and download the library: Download jhacobs/laravel-searchable library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jhacobs / laravel-searchable example snippets
namespace App\Models\User;
use Illuminate\Database\Eloquent\Model;
use Jhacobs\Searchable\Searchable;
class User extends Model
{
use Searchable;
}
namespace App\Models\User;
use Illuminate\Database\Eloquent\Model;
use Jhacobs\Searchable\Searchable;
class User extends Model
{
use Searchable;
protected $searchables = [
'name',
'email'
];
}
User::search('Henk')
->get();