I have a problem. I build an app with Laravel on my computer (IP: 192.168.1.121), I try to access to my app with my Android phone in local network. When I try to reach 192.168.1.121/myapp/public I have a 404 not found but in my computer all work.
On another computer, I can modify host file to add
192.168.1.121     edcintra.test 
And that works perfectly.
define ROOT "C:/laragon/www/EDCIntra/public/"
define SITE "EDCIntra.test"
<VirtualHost *:80> 
    DocumentRoot "${ROOT}"
    ServerName ${SITE}
    ServerAlias *.${SITE}
    <Directory "${ROOT}">
        Options Indexes FollowSymLinks
        AllowOverride All
        allow from all
        Require all granted
    </Directory>
</VirtualHost>
<VirtualHost *:443>
    DocumentRoot "${ROOT}"
    ServerName ${SITE}
    ServerAlias *.${SITE}
    <Directory "${ROOT}">
        AllowOverride All
        Require all granted
    </Directory>
    SSLEngine on
    SSLCertificateFile      C:/laragon/etc/ssl/laragon.crt
    SSLCertificateKeyFile   C:/laragon/etc/ssl/laragon.key
 
</VirtualHost>
This is my conf in Apache... Someone already have this problem?
 
    