Commit a7aa510f authored by Nicolas Widart's avatar Nicolas Widart

Adding a core modules Configuration. Pointing the profile link to the user edit view

parent 7b7064d8
<?php
return [
/*
|--------------------------------------------------------------------------
| These are the core modules that should NOT be disabled under any circumstance
|--------------------------------------------------------------------------
*/
'CoreModules' => [
'Core',
'Dashboard',
'Session',
'User',
]
];
\ No newline at end of file
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
<!-- Menu Footer--> <!-- Menu Footer-->
<li class="user-footer"> <li class="user-footer">
<div class="pull-left"> <div class="pull-left">
<a href="#" class="btn btn-default btn-flat">Profile</a> <a href="{{ URL::route('dashboard.user.edit', [$user->id]) }}" class="btn btn-default btn-flat">Profile</a>
</div> </div>
<div class="pull-right"> <div class="pull-right">
<a href="{{ URL::route('logout') }}" class="btn btn-default btn-flat">Sign out</a> <a href="{{ URL::route('logout') }}" class="btn btn-default btn-flat">Sign out</a>
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
"name": "Core", "name": "Core",
"alias": "core", "alias": "core",
"description": "The core module with all base classes and logic.", "description": "The core module with all base classes and logic.",
"keywords": [ "keywords": [],
],
"active": 1 "active": 1
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment