You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', 'UpdateController@update_software_index')->name('index');
|
|
Route::post('update-system', 'UpdateController@update_software')->name('update-system');
|
|
|
|
Route::fallback(function () {
|
|
return redirect('/');
|
|
});
|
|
|