PHP code example of codewiser / laravel-meilisearch
1. Go to this page and download the library: Download codewiser/laravel-meilisearch 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/ */
class User extends \Illuminate\Database\Eloquent\Model
{
use \Laravel\Scout\Searchable;
#[MeilisearchFilterableAttributes(['id', 'name', 'email'])]
#[MeilisearchSortableAttributes(['created_at'])]
public function toSearchableArray()
{
//
}
}
class Flight extends \Illuminate\Database\Eloquent\Model
{
use \Laravel\Scout\Searchable;
#[MeilisearchFilterableAttributes(['id', 'destination'])]
#[MeilisearchSortableAttributes(['updated_at'])]
public function toSearchableArray()
{
//
}
}
use App\Models\User;
use App\Models\Flight;
'meilisearch' => [
'host' => env('MEILISEARCH_HOST', 'http://localhost:7700'),
'key' => env('MEILISEARCH_KEY', null),
'searchable' => [User::class, Flight::class],
],
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.