Add team, developers, PDF type, and QR rendering dependency.
Deploy Ladill QR Plus / deploy (push) Successful in 42s

Enables account collaboration, API tokens, hosted PDF codes, and fixes QR detail 500s by declaring chillerlan/php-qrcode.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-07 06:16:13 +00:00
co-authored by Cursor
parent bcd1cf5d28
commit 8c3e9d3c26
23 changed files with 892 additions and 28 deletions
@@ -0,0 +1,30 @@
<?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('qr_team_members', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('account_id')->index();
$table->unsignedBigInteger('user_id')->nullable()->index();
$table->string('email');
$table->string('role', 20)->default('member');
$table->string('status', 20)->default('invited');
$table->string('token', 64)->nullable();
$table->timestamp('accepted_at')->nullable();
$table->timestamps();
$table->unique(['account_id', 'email']);
});
}
public function down(): void
{
Schema::dropIfExists('qr_team_members');
}
};