feat: add app and database modules

This commit is contained in:
2026-05-21 16:05:11 +07:00
parent 37b7e783f5
commit fad70d096b
212 changed files with 23901 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
<?php
namespace App\Observers;
use App\Models\AiHealingLog;
class AiHealingLogObserver
{
/**
* Handle the AiHealingLog "created" event.
*/
public function created(AiHealingLog $aiHealingLog): void
{
//
}
/**
* Handle the AiHealingLog "updated" event.
*/
public function updated(AiHealingLog $aiHealingLog): void
{
//
}
/**
* Handle the AiHealingLog "deleted" event.
*/
public function deleted(AiHealingLog $aiHealingLog): void
{
//
}
/**
* Handle the AiHealingLog "restored" event.
*/
public function restored(AiHealingLog $aiHealingLog): void
{
//
}
/**
* Handle the AiHealingLog "force deleted" event.
*/
public function forceDeleted(AiHealingLog $aiHealingLog): void
{
//
}
}