Laravel 4.1 - Detect app environment -
 I am using Laravel 4.1. I have a local version of my project, I have a remote server like   How do I find out the environment:     You must edit the   Check the Laravel document about the environment for more information:    dev  and two versions  beta  and  output    beta ,  output  or  dev ?    
 bootstrap /start.php  file in this file You should receive a  detectEnvironment  call:   
  array 'production-machine-name'), 'beta' = & gt; array ('beta-machine-name'), 'dev' => dev-machine-name '),));   
 
Comments
Post a Comment