在Laravel 5.1中访问页面Javascript中的env值

I cannot find how to achieve this. I am looking to access an env value in a page's javascript in Laravel 5.1. Any help is appreciated!

I have tried the following without success:

var AppImagePath = "<?php echo {!! env('APP_IMG_PATH') !!}?>";

var AppImagePath = {!! env('APP_IMG_PATH') !!};

Try this:

<script>
    var AppImagePath = '{!! env("APP_IMG_PATH") !!}';
    console.log(AppImagePath);
</script>

Using <?php ?> is unnecessary when you are printing values with blade brackets. And in the second one, you forgot the quotes.

Hi this will work perfectly fine
it work for me.

var AppImagePath ='{!!getenv('AppImagePath')!!}';<br><br> 

alert(AppImagePath);