Add very basic server search and dynamic rendering functionality

This commit is contained in:
Dane Everitt 2018-05-26 23:17:02 -07:00
parent f337a89320
commit 6f2fcabf22
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
7 changed files with 169 additions and 46 deletions

View file

@ -7,6 +7,7 @@
* https://opensource.org/licenses/MIT
*/
Route::get('/', 'IndexController@index')->name('index');
Route::get('/dashboard/servers', 'DashboardController@servers')->name('dashboard.servers');
Route::get('/status/{server}', 'IndexController@status')->name('index.status');
/*