Laravel PHP Developer Question:
Tell me how to get current environment in Laravel 5?
Answer:
You may access the current application environment via the environment method.
$environment = App::environment();
dd($environment);
$environment = App::environment();
dd($environment);
Previous Question | Next Question |
Tell me in Which Language It Was Written? | Tell me why Laravel over other PHP frameworks? |