2017-12-14 12:42:45 +08:00
|
|
|
<?php
|
|
|
|
|
2018-02-06 06:16:24 +08:00
|
|
|
Route::get('/', 'UpdaterController@index')->name('index');
|
|
|
|
|
|
|
|
Route::get('/step1', 'UpdaterController@step1')->name('step1');
|
|
|
|
Route::post('/step1', 'UpdaterController@step1')->name('step1');
|
|
|
|
|
|
|
|
Route::post('/run-migrations', 'UpdaterController@run_migrations')->name('run_migrations');
|
|
|
|
Route::get('/complete', 'UpdaterController@complete')->name('complete');
|