20 lines
		
	
	
		
			968 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			968 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| Route::group([
 | |
|     'as' => 'wizard.'
 | |
| ], function () {
 | |
|     Route::get('companies', 'Wizard\Companies@edit')->name('companies.edit');
 | |
|     Route::patch('companies', 'Wizard\Companies@update')->name('companies.update');
 | |
| 
 | |
|     Route::get('currencies', 'Wizard\Currencies@index')->name('currencies.index');
 | |
|     Route::delete('currencies/{currency}', 'Wizard\Currencies@destroy')->name('currencies.delete');
 | |
|     Route::post('currencies', 'Wizard\Currencies@store')->name('currencies.store');
 | |
|     Route::patch('currencies/{currency}', 'Wizard\Currencies@update')->name('currencies.update');
 | |
| 
 | |
|     Route::get('taxes', 'Wizard\Taxes@index')->name('taxes.index');
 | |
|     Route::get('taxes/{tax}/delete', 'Wizard\Taxes@destroy')->name('taxes.delete');
 | |
|     Route::post('taxes', 'Wizard\Taxes@store')->name('taxes.store');
 | |
|     Route::patch('taxes/{tax}', 'Wizard\Taxes@update')->name('taxes.update');
 | |
| 
 | |
|     Route::get('finish', 'Wizard\Finish@index')->name('finish.index');
 | |
| });
 | |
|     
 |