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

View File

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