Expand settings beyond QR into a full Events preferences page.
Deploy Ladill Events / deploy (push) Successful in 51s

Add event notification toggles, new-event defaults that pre-fill creation, and tuck QR styling into a secondary section.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-07 13:31:22 +00:00
co-authored by Cursor
parent 8a1d5708a9
commit 30528a0c7f
7 changed files with 340 additions and 73 deletions
@@ -0,0 +1,24 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('qr_settings', function (Blueprint $table) {
$table->boolean('notify_registrations')->default(true)->after('low_balance_alerts');
$table->boolean('notify_payouts')->default(true)->after('notify_registrations');
$table->json('event_defaults')->nullable()->after('default_style');
});
}
public function down(): void
{
Schema::table('qr_settings', function (Blueprint $table) {
$table->dropColumn(['notify_registrations', 'notify_payouts', 'event_defaults']);
});
}
};