email support

This commit is contained in:
Simon Pocrnjič
2025-10-11 17:20:05 +02:00
parent 7c7defb6c5
commit 1b615163be
23 changed files with 3183 additions and 28 deletions
@@ -0,0 +1,28 @@
<?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::create('email_templates', function (Blueprint $table): void {
$table->id();
$table->string('name');
$table->string('key')->unique();
$table->string('subject_template');
$table->longText('html_template')->nullable();
$table->longText('text_template')->nullable();
$table->json('entity_types')->nullable(); // e.g. ["client","contract","client_case"]
$table->boolean('active')->default(true);
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('email_templates');
}
};