PHP code example of anyforever / laravel-scout-tntsearch
1. Go to this page and download the library: Download anyforever/laravel-scout-tntsearch 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/ */
anyforever / laravel-scout-tntsearch example snippets
namespace App;
use Illuminate\Database\Eloquent\Model;
use Laravel\Scout\Searchable;
class Post extends Model
{
use Searchable;
/**
* Get the indexable data array for the model.
*
* @return array
*/
public function toSearchableArray()
{
return [
'id' => $this->id,
'title' => $this->title,
'body' => strip_tags($this->body),
];
}
}