Fix Event & EventType resource issues and apply formatting
- Fix EventType deletion error handling (constraint violations) - Fix Event update error (package_id column missing) - Fix Event Type dropdown options (JSON display issue) - Fix EventPackagesRelationManager query error - Add missing translations for deletion errors - Apply Pint formatting
This commit is contained in:
@@ -31,6 +31,7 @@ class ArchiveEventMediaAssets implements ShouldQueue
|
||||
|
||||
if (! $event) {
|
||||
Log::warning('Archive job aborted: event missing', ['event_id' => $this->eventId]);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -38,6 +39,7 @@ class ArchiveEventMediaAssets implements ShouldQueue
|
||||
|
||||
if (! $archiveDisk) {
|
||||
Log::warning('Archive job aborted: no archive disk configured', ['event_id' => $event->id]);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
|
||||
namespace App\Jobs\Concerns;
|
||||
|
||||
use App\Models\Tenant;
|
||||
use App\Models\TenantNotificationLog;
|
||||
use App\Models\TenantNotificationReceipt;
|
||||
use App\Models\Tenant;
|
||||
use App\Services\Packages\TenantNotificationLogger;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
trait LogsTenantNotifications
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user