Laravel ??: Laravel Scout ? Meilisearch? ???? ?? ??? ??? ???? ??? ??????
Jun 14, 2023 pm 12:01 PM???? ????? ?? ??? ??? ?? ? ?? ????? ???????? ???? ??? ?????. Laravel ???????? Laravel Scout? Meilisearch? ???? ????? ?? ?? ??? ?? ??? ??? ? ????.
1. ??? ??????
Laravel Scout? Laravel ??????? ?? ?? ??? ?? ??? ???? ?? Laravel?? ????? ???? ???????. ???? ?? Algolia, Elasticsearch ? Meilisearch? ??? ?? ?? ??? ?????.
2. ???????
Meilisearch? ??? ??? ??? ??? ???? ??? ??? ?? ?? ?? ??? ?? ?????. ?? ?? ??? ???? Meilisearch? ? ?? ?? ??? ? ?? ??? ??? ???? ??? ???? ?? ??? ?? ? ??? ??? ?????.
3. Laravel Scout? Meilisearch? ???? ?? ??? ??? ???? ??? ??????
- Laravel Scout ? Meilisearch ??
?? Laravel ??????? Laravel Scout ? Meilisearch? ???? ???. ??? Laravel 8? ?? ?? Composer? ???? ??? ? ????.
composer require laravel/scout meilisearch/meilisearch-php
- Configure Laravel Scout
??? ??? ? Laravel ???????? Laravel Scout? ???? ???. config/app.php ??? ?? Laravel Scout ????? ??? ???? ??? ??? ?????:
'providers' => [ // ... LaravelScoutScoutServiceProvider::class, ],
?? ?? .env ???? ?????? ??? Meilisearch ??? ?????:
SCOUT_DRIVER=meilisearch MEILISEARCH_HOST=http://localhost:7700 MEILISEARCH_KEY=masterKey MEILISEARCH_HTTP_CLIENT=meilisearch
- ?? ? ??? ??
Connect ???? Laravel ???????? ?? ??? ??? ?? ??? ??? ??? ?? ???? ???? ???. ?? ?? Article:
php artisan make:model Article -m
??? ??? ??? ? ????. ??? ???? ?? ?????? ?????? ??? ?????. ?????? ??? ??? ?? ?? ???? ???? ???:
Schema::create('articles', function (Blueprint $table) { $table->id(); $table->string('title'); $table->text('body'); $table->timestamps(); $table->softDeletes(); }); // 添加搜索索引 IlluminateSupportFacadesSchema::table('articles', function ($table) { $table->text('searchable')->nullable(); }); // 創(chuàng)建搜索索引 IlluminateSupportFacadesArtisan::call('scout:import', ['model' => AppModelsArticle::class]);
?????? ??? ?? ???? ??? ? Laravel Scout? ?? ??? ??? ???? ??? ? ??? ??? ?????? ???:
use LaravelScoutSearchable; class Article extends Model { use Searchable; }
- ?? ??? ??? ??
?? Laravel Scout? Meilisearch? ???? ?? ??? ??? ???? ?? ??? ???????. ?? ??? ??? ????? Laravel Scout?? ???? ?? ?? ??? ??? ? ????:
$articles = Article::search('搜索關(guān)鍵詞')->get();
? ??? ?? ?? ??? ??? ????? ?? ??? ??? ???? ? ????.
4. ??
Laravel Scout? Meilisearch? ??? ??? ?? ??? ???? ? ??? ?? ???? ???? ?? ??? ?? ?????. ??? ?? ??? ???? ??? ??? ????? ??? ??? ??? ?????.
? ??? Laravel ??: Laravel Scout ? Meilisearch? ???? ?? ??? ??? ???? ??? ??????? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

SublimeText3 Mac ??
? ??? ?? ?? ?????(SublimeText3)

PHP?? ?? ??? ???? ? ?? ?? ??? ????. 1. php.ini? ?? ??? ??; 2. ? ?? (? : Apache? Setenv ?? nginx? FastCGI_Param)? ??????. 3. PHP ?????? putenv () ??? ??????. ? ??? Php.ini? ????? ??? ???? ??? ???? ? ?? ??? ?? ???? ????? ???? Putenv ()? ?? ??? ?????. ?? ???? ?? ?? (? : php.ini ?? ? ?? ??)? ???? ????. ?? ?? ??? ??? ?? ??? ????? ???? ?? ????.

Laravel? ?? ??? ?? ?? ??? ?? ?? ??? ???? ??? ??????. ?? ???? ?? ??? ????? ? ???? I/O ?? ? ?? ?? ??? ???? ???? ??? ?? ? ????. 1. ?? ????? ?? ? ? ???????? ??? ????? ?? ???? ??????. 2. ??? ? ??? ?? ? ? PhPartisAnconfig? ?? ???????. 3. ?? ??? ??? ??? ???? ?? ?? ?? ???? ???? ????. 4. ?? ?? ??? ???? ?? ??? ??? .env ??? ???? ?? ???????.

PHP ????? ?? ??? ??? ? ??? ??? CI (Continuous Integration) ????? ???? ? ????. 1. DockerFile? ???? ?? ???, ?? ??, ??? ?? ? ?? ??? ???? PHP ??? ?????. 2. Gitlabci? ?? CI/CD ??? ???? .gitlab-ci.yml ??? ?? ??, ??? ? ?? ??? ???? ?? ??, ??? ? ??? ?????. 3. PHPUNIT? ?? ??? ??? ??? ???? ?? ?? ? ???? ???? ????????. 4. Kubernetes? ?? ?? ?? ??? ???? ?? .yaml ??? ?? ?? ??? ?????. 5. Dockerfile ??? ? ??? ??? ??????

??? ?? ??? PHP ???? ?? ?? ??? ???? ?? ???????. RBAC (Role-Based Access Control) ??? ?? ???, ?? ? ??? ???? ??? ?? ?? ? ??? ?????. ?? ???? ??? ?????. 1. ???, ?? ? ??? ? ???? user_roles ? role_permissions? 3 ?? ?? ???; 2. $ user-> can ( 'edit_post')? ?? ???? ?? ?? ??? ?????. 3. ??? ???? ??? ??????. 4. ?? ??? ???? ?? ?? ?? ? ??? ? ???? ???? ?? ??? ? ?? ??? ?????. 5. ??? ??? ?? ?? ???? ?? ???? "??"? ??????.

Laravel? eloquentscopes? ?? ??? ??? ??? ?????? ?? ?? ??? ????? ?????. 1. ?? ??? ???? ???? ???? ???? Post :: published (); 2. ??? ??? ?? ??? ???? ???? ?? ??? ?? ?? ?? ??? ???? ???? ??? ?????? ??? ???? ???????. 3. ????? ?? ?? ?? ??? ??? ?? ?? ??? ?? ? ? ??? ?? ? ? ?? ?? ??? ?????. 4. ?? ??? ? ??? ?? ???? ? ??? ? ?? ??, ?? ??, ?? ???? ? ?? ?????????.

CreateAhelpers.phpfileInapp/helperswithCustOmFunctionsikeFormatPrice, isactiveroute, andisAdmin.2.addTheFileTothe "??"sectionOfcomposer.jsonUnderAutoLoad.3.runcomposerDump-AUTOLOADTOMAKETHINGTICTIONSGLOBELYAVAILABLE.4.USETHEHELPERFUNCUNTION

?? ?? ?? : ?? ????? PHP? ?? Error_Log ()? ??? ? ????. ????? ???? ??? ?? ??? ?????? ???? ?? ??? ? ?? ??? ???? ??? ?? ???, ??, ?? ? ?? ? ?? ?? ??? ???? ??? ??????. 2. ??? ?? ?? : ??? ??? ??? ??? ? ??? ?? ??? ??? ?? ??? ??? ??????? ??????. MySQL/PostgreSQL? ???? ??? ? ???? ??????. Elasticsearch Kibana? ? ???/? ???? ?????. ???, ??? ?? ? ??? ? ?? ??? ?? ??????. 3. ?? ? ?? ????? : ??, ???, ?? ? ??? ??? ??????. Kibana? ?? ????? PHP ??? ?? ?? ?????? ???? ???? ?????? ???? ??? ? ?? ??? ??? ? ????.

??, ??, ?? ?? ? ?? ??? ???? ?? ??? ?? ? ?? ???? ?????. 2. ?? ???? ???? ?? ??? ??? SONGSTOMONY ? HASMANY ?? ??; 3. ?? ? ? ?? ? ?? ??? ????? (?? ???? ?? ??? ? ??). 4. ?? ? ?? ??? ???? ?? ??? ???? ?? ? ?? ??? ???? ?? ??? ?????. 5. ?? ???? ??? ?? (?? ??)? ???? ?? ????? ??????. 6. ?? ??? ?? ??? ???? Laravel Signature URL? ???? ??? ??????. 7. ? ?? ?? ? ? ?? ??? ?? ?? ??? ?? ??? ?????. ?????? ??, ?? ?? ??? ??????????.
