98dacef556
PHP Tests / php-tests (push) Has been cancelled
Staging terminates SSL at a reverse proxy in front of the app, but Laravel had no trustProxies() configured, so it never saw the request as HTTPS and generated http:// asset URLs on the https:// page. Browsers block that as mixed content, which silently broke every JS-enhanced Filament field (FileUpload, Textarea, etc.) — e.g. the Ev Company logo field falling back to a bare native file input. - bootstrap/app.php: trust the proxy via X-Forwarded-* headers. - AppServiceProvider: force the https scheme when APP_URL is https, as a fallback in case the forwarded header is ever missing.