feat: Add admin bulk-mail placeholder variables and template rendering

This commit is contained in:
xboard
2026-03-19 05:02:16 +08:00
parent 47983dec40
commit 64e6d8148e
4 changed files with 188 additions and 74 deletions
@@ -17,7 +17,7 @@ class CreateV2SettingsTable extends Migration
$table->id();
$table->string('group')->comment('设置分组')->nullable();
$table->string('type')->comment('设置类型')->nullable();
$table->string('name')->comment('设置名称')->uniqid();
$table->string('name')->comment('设置名称')->unique();
$table->string('value')->comment('设置值')->nullable();
$table->timestamps();
});