### Laravel Version 12.12.0 ### PHP Version PHP 8.4.6 ### Database Driver & Version _No response_ ### Description When running: ~~~ php artisan storage:link ~~~ Laravel outputs: ~~~ The [public/storage] link has been connected to [storagepublic]. ~~~ But $target is: ~~~ /app/storage/app/public ~~~ Confirmed via: ~~~ dump($link, $target); ~~~ This appears to be a display bug in `Illuminate\Console\View\Components\Info`, where the ANSI-formatted output misrepresents the `$target` path. Expected Output: ~~~ The [public/storage] link has been connected to [/app/storage/app/public]. ~~~ Actual Output: ~~~ The [public/storage] link has been connected to [storagepublic]. ~~~ Environment: Docker (Alpine-based container) ### Steps To Reproduce run ~~~ php artisan storage:link ~~~