Skip to content

Commit

Permalink
Fixes #784 - add "create accessory" to topnav
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed May 4, 2015
1 parent 51eeee0 commit 3881e2e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/config/version.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
return array (
'app_version' => 'v1.2.7-4',
'hash_version' => 'v1.2.7-4-gf463cd6',
'app_version' => 'v1.2.7-5',
'hash_version' => 'v1.2.7-5-gc487bee',
);
5 changes: 5 additions & 0 deletions app/views/backend/layouts/default.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@
<i class="fa fa-certificate"></i>
@lang('general.license')</a>
</li>
<li {{{ (Request::is('admin/accessories/create') ? 'class="active"' : '') }}}>
<a href="{{ route('create/accessory') }}">
<i class="fa fa-keyboard-o"></i>
@lang('general.accessory')</a>
</li>
<li {{{ (Request::is('admin/users/create') ? 'class="active"' : '') }}}>
<a href="{{ route('create/user') }}">
<i class="fa fa-user"></i>
Expand Down

0 comments on commit 3881e2e

Please sign in to comment.