Add team, developers, PDF type, and QR rendering dependency.
Deploy Ladill QR Plus / deploy (push) Successful in 42s
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:
@@ -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()]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user