phpvms/modules/Installer/Http/Routes/update.php

10 lines
362 B
PHP
Raw Normal View History

2017-12-14 12:42:45 +08:00
<?php
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');