Implement node view, cleanup other files.
Still in progress, need to do a lot of controller cleanup first and add node deletion as well.
This commit is contained in:
parent
6c7fff1de0
commit
fd9f1a68eb
16 changed files with 1335 additions and 149 deletions
|
@ -90,15 +90,15 @@
|
|||
<i class="fa fa-wrench"></i> <span>Settings</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="header">SERVER MANAGEMENT</li>
|
||||
<li class="header">MANAGEMENT</li>
|
||||
<li class="{{ Route::currentRouteName() !== 'admin.servers' ?: 'active' }}">
|
||||
<a href="{{ route('admin.servers') }}">
|
||||
<i class="fa fa-server"></i> <span>List Servers</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="{{ Route::currentRouteName() !== 'admin.servers.new' ?: 'active' }}">
|
||||
<a href="{{ route('admin.servers.new') }}">
|
||||
<i class="fa fa-plus"></i> <span>Create Server</span>
|
||||
<li class="{{ Route::currentRouteName() !== 'admin.nodes' ?: 'active' }}">
|
||||
<a href="{{ route('admin.nodes') }}">
|
||||
<i class="fa fa-sitemap"></i> <span>List Nodes</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
Reference in a new issue