Cleanup Installer module scaffolding

This commit is contained in:
Nabeel Shahzad
2017-12-13 22:42:45 -06:00
parent 3e3f18fd0c
commit d1a761711a
9 changed files with 32 additions and 59 deletions

View File

@@ -0,0 +1,3 @@
<?php
Route::get('/', 'InstallerController@index');

View File

@@ -0,0 +1,3 @@
<?php
Route::get('/update', 'InstallerController@index');

View File

@@ -1,7 +0,0 @@
<?php
Route::group(['middleware' => []], function() {
Route::get('/', 'InstallerController@index');
});