I am using laravel 5.2 and I've successfully create all.css in public/css
folder using gulp.
but when I try to use all.css in view admin.login using following line of code as defined in laravel 5.2 documentation and it not works
<link rel="stylesheet" type="text/css" href="{{ elixir('css/all.css') }}">
and when I use this following line of code it works.
<link rel="stylesheet" type="text/css" href="{{ url('/public/' . elixir('css/all.css')) }}">
Is it correct? or I am missing some thing?