Add Campaigns module for grouping QR codes.
Deploy Ladill QR Plus / deploy (push) Successful in 1m6s

Let accounts organise codes by promo or launch, attach or detach codes, and view combined scan totals from the sidebar.
This commit is contained in:
isaacclad
2026-07-16 20:43:02 +00:00
parent ccb7c971e6
commit 95d73d1367
13 changed files with 699 additions and 1 deletions
+5
View File
@@ -58,6 +58,11 @@ class User extends Authenticatable
return $this->hasMany(QrCode::class);
}
public function campaigns(): HasMany
{
return $this->hasMany(Campaign::class);
}
public function qrSetting(): HasOne
{
return $this->hasOne(QrSetting::class);