Add account company logo for customer event emails.
Deploy Ladill Events / deploy (push) Successful in 1m39s

Upload logo in account settings and prefer it over Ladill product marks in event notification headers.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-12 20:07:55 +00:00
co-authored by Cursor
parent 407f1364fb
commit b5debd79c4
15 changed files with 377 additions and 36 deletions
@@ -0,0 +1,22 @@
<?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->string('logo_path')->nullable()->after('event_defaults');
});
}
public function down(): void
{
Schema::table('qr_settings', function (Blueprint $table) {
$table->dropColumn('logo_path');
});
}
};