deploy commit

This commit is contained in:
2026-07-15 17:23:15 +07:00
commit b94ef4a695
148 changed files with 14831 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Providers;
use App\Services\SkinAiService;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
$this->app->singleton(SkinAiService::class);
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}