From ef7e485e7d9109bdc0b5d4966b09da38c57faf38 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 2 Sep 2026 20:04:33 +0930 Subject: [PATCH] Fix Larastan error: correct Status import in NotificationService Use App\Models\Status instead of the non-existent App\Status class. --- app/Services/NotificationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/NotificationService.php b/app/Services/NotificationService.php index 02d47ae0e..3db108032 100644 --- a/app/Services/NotificationService.php +++ b/app/Services/NotificationService.php @@ -4,7 +4,7 @@ namespace App\Services; use App\Jobs\InternalPipeline\NotificationEpochUpdatePipeline; use App\Models\Notification; -use App\Status; +use App\Models\Status; use App\Transformer\Api\NotificationTransformer; use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Log;