Wire LadillLink through QrCode model and remaining QR surfaces.
Deploy Ladill Transfer / deploy (push) Successful in 31s

Public URLs, encoded payloads, slug preview, payment callbacks, and asset paths now use ladl.link instead of ladill.com/q/*.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-27 16:16:25 +00:00
co-authored by Cursor
parent 7a1bc86b9e
commit a171276bc2
7 changed files with 47 additions and 18 deletions
+1 -2
View File
@@ -2,7 +2,6 @@
namespace App\Support;
use App\Models\QrCode;
use App\Models\Transfer;
use App\Models\TransferFile;
use RuntimeException;
@@ -16,6 +15,6 @@ class DirectTransferFileUrl
throw new RuntimeException('Transfer file URL is unavailable.');
}
return QrCode::publicBaseUrl().'/q/'.$shortCode.'/transfer/files/'.$file->id;
return LadillLink::path($shortCode, 'transfer/files/'.$file->id);
}
}