Reputation: 4840
I have a separate stylesheet (backend.css) for my admin backend css classes. Since clearly it shouldn't be in the public folder, where would be the appropriate location to store it?
Also, since HTML helper function:
{{ Html::style('css/stylesheet.css') }}
locates to only files in the public folder, how do I access it?
Upvotes: 0
Views: 220
Reputation: 1543
The "public" folder is called that way because it is accessible via HTTP. It does not refer to any specific part of your application (public or admin). So the "public" folder is the appropriate place for any files that have to be accessed directly via HTTP, like images, css and javascript files.
Upvotes: 2