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:
Dane Everitt 2017-03-03 17:30:39 -05:00
parent 6c7fff1de0
commit fd9f1a68eb
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
16 changed files with 1335 additions and 149 deletions

View file

@ -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>