Kousha
Kousha

Reputation: 36229

AngularJS layout management of header

How can I manage my header layouts in AngularJS? Say I have a master layout as such:

<html ng-app>
<header>
    <!-- My header Files -->
</header>
<body>
    <!-- My content -->
</body>
</html>

Different pages have different javascript/css files that need to run. How can I manage this with AngularJS route? With Laravel blade, layout/templates/partials is really simple. Is there something like that for angular was well?

Upvotes: 0

Views: 131

Answers (1)

Tharaka
Tharaka

Reputation: 2395

I am not familar with Laravel Blade. But you should be able to achieve what you need by simple using the ng-view directive.

This is official guide provides details with how to use $routeProvider combined with ngView

Upvotes: 1

Related Questions