Hintergründe zum EventInvitePage Layout Customizer hinzugefügt. Badge und CTA entfernt, Textfelder zu Textareas gemacht. Geschenkgutscheine verbessert, E-Mail-Versand ergänzt + Resend + Confirmationseite mit Code-Copy und Link zur Package-Seite, die den Code als URL-Parameter enthält.

This commit is contained in:
Codex Agent
2025-12-08 16:20:04 +01:00
parent 046e2fe3ec
commit 4784c23e70
35 changed files with 1503 additions and 136 deletions

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('gift_vouchers', function (Blueprint $table) {
$table->timestamp('recipient_delivery_scheduled_at')->nullable()->after('redeemed_at');
$table->timestamp('recipient_delivery_sent_at')->nullable()->after('recipient_delivery_scheduled_at');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('gift_vouchers', function (Blueprint $table) {
$table->dropColumn(['recipient_delivery_scheduled_at', 'recipient_delivery_sent_at']);
});
}
};