2019-11-16 10:21:14 +03:00
|
|
|
<?php
|
2020-01-16 16:37:32 +03:00
|
|
|
|
2020-01-31 00:23:09 +03:00
|
|
|
/**
|
|
|
|
* 'wizard' middleware and prefix applied to all routes
|
|
|
|
*
|
|
|
|
* @see \App\Providers\Route::mapWizardRoutes
|
|
|
|
*/
|
2020-01-30 15:19:33 +03:00
|
|
|
|
2020-01-16 16:37:32 +03:00
|
|
|
Route::group(['as' => 'wizard.'], function () {
|
2019-11-16 10:21:14 +03:00
|
|
|
Route::get('companies', 'Wizard\Companies@edit')->name('companies.edit');
|
|
|
|
Route::patch('companies', 'Wizard\Companies@update')->name('companies.update');
|
2019-12-12 11:43:13 +03:00
|
|
|
|
2020-01-16 16:37:32 +03:00
|
|
|
Route::resource('currencies', 'Wizard\Currencies');
|
|
|
|
Route::resource('taxes', 'Wizard\Taxes');
|
2019-12-12 11:43:13 +03:00
|
|
|
|
2019-11-16 10:21:14 +03:00
|
|
|
Route::get('finish', 'Wizard\Finish@index')->name('finish.index');
|
|
|
|
});
|