When requesting example.com/laravel/horizon the page will be blank and css/js resources can't be loaded.
https://github.com/laravel/horizon/blob/384c84512cdf929886343c2e498f8dc4180d8728/resources/views/app.blade.php#L6-L17
Here's using mix() to generate url for css/js, but without calling asset(mix()) to fix absolute path, these url will be like example.com/vendor/horizon (should be example.com/laravel/vendor/horizon) when laravel's url is using subfolder path like example.com/laravel/horizon.
Is it related to...
https://github.com/laravel/horizon/pull/355
https://github.com/laravel/horizon/pull/223
https://github.com/laravel/horizon/issues/245
https://github.com/laravel/horizon/pull/379
...I think there are more...
same thing happens with telescope & probably with Nova. There are some alternatives in the linked issues but not a built in feature :(
Is it related to...
355
223
245
379
...I think there are more...
same thing happens with telescope & probably with Nova. There are some alternatives in the linked issues but not a built in feature :(
Related from telescope:
laravel/telescope#414
laravel/telescope#270
laravel/telescope#293
PR:
laravel/telescope#281 rejected
laravel/telescope#272 accepted which fixed static resources url
We could fix this. Feel free to send in a PR to the current release with the asset helper like on telescope.
As for https://github.com/laravel/horizon/issues/245 we would consider resending https://github.com/laravel/horizon/pull/223 perhaps.
We could fix this. Feel free to send in a PR to the current release with the asset helper like on telescope.
Telescope seems doesn't want to fix this due to changing vue route root path : laravel/telescope#281 and https://github.com/laravel/telescope/issues/414#issuecomment-440155289
Heya, I'm sorry. Was a little confused there. Seems like this is indeed a no-go sorry.