When I access a project that does not use laravel, it works normally, but when it does not load anything, it shows nothing and shows an empty screen. Does his configuration have to be different from the others?
My virtual host looks like this:
<VirtualHost *:80>
DocumentRoot "/var/www/html/insidetv/public/"
ServerName insidetv.local
ServerAlias insidetv.local
ErrorLog "/var/log/apache2/insidetv-error.log"
CustomLog "/var/log/apache2/insidetv-custom.log" common
<Directory "/var/www/html/insidetv/public/">
Options Includes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>