ad meilisearch

This commit is contained in:
lgb
2023-04-01 21:55:02 +08:00
parent caaf140beb
commit 3287e1292a
4 changed files with 629 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Repositories;
class MeiliSearchRepository extends BaseRepository
{
private $client;
public function getCleint()
{
if (is_null($this->client)) {
}
}
public function isEnabled(): bool
{
return true;
}
}