How should one use Foundation with Laravel?
I thought I\'d install Foundation in vendor folder with bower install foundation. This results int
Copy Fundation > scss folder to resources > assets folder, rename scss to sass, in your gulpfile.js add following
elixir(function(mix) {
mix.sass('foundation.scss');
});
Run gulp which will generate foundation.css file in public > css folder, include that file in your project.
For js files you can simple use something like this to copy the file
mix.copy('resources/assets/foundation/js/app.js', 'public/js/app.js');