6. ahora debes crear un archivo llamado link.php
7. dentro de este archivoagrega la reuta para crear el enlace simbolico.
<?php
symlink('/home/**server_directory**/**YOURFOLDERNAME**/storage/app/public','/home/**server_directory**/public_html/storage');
8. ve a tu proyecto en el entorno de producción y solicita la ruta donde esta alojado el archivo, ejemplo: Https://nombredetudominio.com/link.php
9. Limpia la cache de tu servidor y prueba el funcionamiento
Now in english
Try this: For Laravel 5.8 or next versions
Step 1: Access the public directory of your project public_html
Step 2: Change the name to the folder called Storage by Storage2
Step 3: Open the index.php file
Step 4: Change require __DIR__.'/../vendor/autoload.php';
for require __DIR__.'/../YOURFOLDERNAME/vendor/autoload.php';
Step 5: Change $app = require_once __DIR__.'/../bootstrap/app.php';
for $app = require_once __DIR__.'/../YOURFOLDERNAME/bootstrap/app.php';
Step 6: Now you need to create a new file on public_html
called link.php
Step 7: Add the following code to the file link.php
<?php
symlink('/home/**server_directory**/**YOURFOLDERNAME**/storage/app/public','/home/**server_directory**/public_html/storage');
Step 8: Visit yourwebsite.com/link.php
You will see a blank page
Step 9: Go back to the administrative panel of Voyager and click on the "Fix it" button
Step 10: Delete link.php file from your server.