So now a nice HTML page can be designed, it is common practice to use CSS and JS externally in page. The question arises, where to store our CSS and JS files to be used with Laravel?

All CSS & JS should be placed under public directory under root of your project directory. It can be called in blade file as

{{ URL::asset('css/cssfile.css') }}

For example a css.css file from css folder under public directory ( public/css/css.css) can be called as :

<link href="{{ URL::asset('css.css') }}" rel="stylesheet">

Alternatively, if you don’t want to go this long, you can call it directly as:

<link href="css/css.css" rel="stylesheet">

The above example is also valid for JS files. Now the question arises, why there is JS and CSS folder inside resources folder?

The answer is those are file which are uncompiled and need to compiled using proper compiler. For example app related CSS can be there with SASS or LESS code and it will be compiled with required package and used within the app. We will cover that in upcoming tutorials.