Fixing format changes
This commit is contained in:
parent
f85e807284
commit
68a9f1add7
@ -1,19 +1,20 @@
|
||||
<?php
|
||||
|
||||
Route::group(['as' => 'wizard.'], function () {
|
||||
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');
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user