Add Campaigns module for grouping short links.
Deploy Ladill Link / deploy (push) Successful in 1m26s

Let accounts organise links by promo or launch, attach or detach links, and view combined click totals from the sidebar.
This commit is contained in:
isaacclad
2026-07-16 20:43:11 +00:00
parent 32a174c826
commit f45fdcd159
13 changed files with 702 additions and 2 deletions
+5
View File
@@ -49,6 +49,11 @@ class User extends Authenticatable
return $this->hasMany(ShortLink::class);
}
public function campaigns(): HasMany
{
return $this->hasMany(Campaign::class);
}
public function linkCustomDomains(): HasMany
{
return $this->hasMany(LinkCustomDomain::class);