我可以远程访问笔记本电脑中安装的wampserver中的页面

I installed WampServer 3.0.4 in a laptop (I'm studying) and I have a standard internet connection from a local ISP.

I'm developing pages that I want to check from other laptops at home. I did it once but it stopped working.

I tried the following:

In httpd.conf:

Listen 80

ServerName localhost:80 (I tried <My IP Address>:80) 

<Directory "c:/wamp/www/">

...

Require all granted

</Directory>

In phpmyadmin.conf:

Allow from all

In Windows Firewall:

I created an inbound rule in the firewall for port 80, allowing all connections for all programs

I also tried using other port like 8080, but it didn't work either

What could I be missing?