Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Adds additional options for authenticated user in navbar #161

Merged
merged 1 commit into from
Dec 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions resources/views/layouts/bare.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,29 @@
<div class="collapse navbar-collapse pull-left" id="navbar-collapse">
<ul class="nav navbar-nav">
@include('_navi18n')

@if(auth()->check())
@include('user._navmenu')
@endif
</ul>
<!-- Search input here -->
</div>
<!-- /.navbar-collapse -->
<!-- Navbar Right Menu -->
<div class="navbar-custom-menu">
<ul class="nav navbar-nav">

@if(auth()->check())
<!-- Notifications Menu -->
@include('user._notifications-menu')

<!-- User Account Menu -->
@include('_user-account-menu')
@endif

</ul>
</div>
<!-- /.navbar-custom-menu -->
</div>
<!-- /.container-fluid -->
</nav>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@
</div>

</div><!-- /.row -->

</div>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This <div> element was not closed.

</body>
</html>