I hope to make use of elixir to minify the script and css files.
In my master layout, I have included those files separately
{!! Html::script('plugin/Flat-UI/js/flat-ui.min.js') !!}
{!! Html::style('plugin/Flat-UI/css/flat-ui.min.css') !!}
{!! Html::script('plugin/JQuery-UI/Flick/jquery-ui.js') !!}
{!! Html::style('plugin/JQuery-UI/Flick/jquery-ui.css') !!}
As I know, minify will combine all files into one file right? If that case, did I need to manually change the master layout so that it only include that one file instead of as shown above?
{!! Html::script('minify.js') !!}