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
@@ -30,7 +30,7 @@ class AccountController extends Controller
public function wallet(): View
{
$user = auth()->user();
$user = ladill_account();
[$balanceMinor, $ledger] = $this->billingSnapshot($user?->public_id);
return view('qr.account.wallet', [
@@ -43,7 +43,7 @@ class AccountController extends Controller
public function billing(): View
{
$user = auth()->user();
$user = ladill_account();
[$balanceMinor, $ledger] = $this->billingSnapshot($user?->public_id);
return view('qr.account.billing', [
@@ -56,6 +56,6 @@ class AccountController extends Controller
public function settings(): View
{
return view('qr.account.settings', ['account' => auth()->user()]);
return view('qr.account.settings', ['account' => ladill_account()]);
}
}