In Laravel 4.2, I used public folder to store all my CSS, JS, images and uploads. Currently, there\'s a new resources folder with a
You can think of them as being separate folders for development and production. In resources you have all your development files that'll not ship off into production (SASS, Coffeescript, Babel, Jade, etc). But when they're compiled (or piped through something like Gulp) you can configure them to output to public, the production folder.