- TodayIssue 모델 및 마이그레이션 추가 - TodayIssueController, TodayIssueService 구현 - TodayIssueObserverService 및 Observer 패턴 적용 - DailyReportService 연동 - Swagger API 문서 업데이트 - 라우트 추가
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Observers\TodayIssue;
|
|
|
|
use App\Models\Tenants\ExpectedExpense;
|
|
use App\Services\TodayIssueObserverService;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
/**
|
|
* ExpectedExpense 모델의 TodayIssue Observer
|
|
*/
|
|
class ExpectedExpenseIssueObserver
|
|
{
|
|
public function __construct(
|
|
protected TodayIssueObserverService $service
|
|
) {}
|
|
|
|
public function created(ExpectedExpense $expense): void
|
|
{
|
|
$this->safeExecute(fn () => $this->service->handleExpectedExpenseChange($expense));
|
|
}
|
|
|
|
public function updated(ExpectedExpense $expense): void
|
|
{
|
|
$this->safeExecute(fn () => $this->service->handleExpectedExpenseChange($expense));
|
|
}
|
|
|
|
public function deleted(ExpectedExpense $expense): void
|
|
{
|
|
$this->safeExecute(fn () => $this->service->handleExpectedExpenseDeleted($expense));
|
|
}
|
|
|
|
protected function safeExecute(callable $callback): void
|
|
{
|
|
try {
|
|
$callback();
|
|
} catch (\Throwable $e) {
|
|
Log::warning('TodayIssue ExpectedExpenseObserver failed', [
|
|
'error' => $e->getMessage(),
|
|
]);
|
|
}
|
|
}
|
|
}
|