Fix clear cache errors with duplicate route names #759 (#787)

This commit is contained in:
Nabeel S
2020-08-13 17:53:30 -04:00
committed by GitHub
parent 27316f96e8
commit 4fa58cec5a
5 changed files with 5 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ class InstallerServiceProvider extends ServiceProvider
Route::post('/dbtest', 'InstallerController@dbtest')->name('dbtest');
Route::get('/step1', 'InstallerController@step1')->name('step1');
Route::post('/step1', 'InstallerController@step1')->name('step1');
Route::post('/step1', 'InstallerController@step1')->name('step1post');
Route::get('/step2', 'InstallerController@step2')->name('step2');
Route::post('/envsetup', 'InstallerController@envsetup')->name('envsetup');

View File

@@ -3,7 +3,7 @@
@section('content')
<p>Press continue to start</p>
{{ Form::open(['route' => 'installer.step1', 'method' => 'post']) }}
{{ Form::open(['route' => 'installer.step1post', 'method' => 'post']) }}
<p style="text-align: right">
{{ Form::submit('Start >>', ['class' => 'btn btn-success']) }}
</p>