When my code have error (even syntax errors) browser show 500 - Internal Server Error,
In .env I set the APP_DEBUG to true and APP_LOG_LEVEL is debug
How can I enable error messages?
UPDATE:
I use Laravel 5.3
UPDATE 2:
I use Apache and defined VirtualHost to access this app :
<VirtualHost *:80>
    ServerAdmin myemail@domain.com
    DocumentRoot "/Dev/Web/site/public"
    ServerName site.local
    ServerAlias www.site.local
    ErrorLog "/private/var/log/apache2/site.local-error_log"
    CustomLog "/private/var/log/apache2/site.local-access_log" common
    <Directory "/Dev/Web/site/public/">
        Require all granted
        AllowOverride All
    </Directory>
</VirtualHost>
UPDATE 3:
My /etc/hosts records:
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1       localhost gat.local www.gat.local site.local www.site.local shop.local www.shop.local
 
     
     
    