Fix case typo

This commit is contained in:
Ludovic CANDELLIER
2020-04-15 15:40:57 +02:00
parent 54e7a3f5a1
commit 49afb9ca4c
28 changed files with 48 additions and 65 deletions

11
routes/Shop/Orders.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
Route::prefix('Orders')->name('Orders.')->group(function () {
Route::get('', 'OrderController@index')->name('index');
Route::get('create', 'OrderController@create')->name('create');
Route::delete('destroy', 'OrderController@destroy')->name('destroy');
Route::post('update', 'OrderController@update')->name('update');
Route::post('store', 'OrderController@store')->name('store');
Route::get('edit/{id}', 'OrderController@edit')->name('edit');
});