fixes
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
|
||||
Route::prefix('InvoicePayments')->name('InvoicePayments.')->group(function () {
|
||||
Route::get('', 'InvoicePaymentController@index')->name('index');
|
||||
Route::get('create', 'InvoicePaymentController@create')->name('create');
|
||||
Route::delete('destroy', 'InvoicePaymentController@destroy')->name('destroy');
|
||||
Route::get('create/{invoice_id?}', 'InvoicePaymentController@create')->name('create');
|
||||
Route::get('destroy/{id?}', 'InvoicePaymentController@destroy')->name('destroy');
|
||||
Route::post('update', 'InvoicePaymentController@update')->name('update');
|
||||
Route::post('store', 'InvoicePaymentController@store')->name('store');
|
||||
Route::get('edit/{id?}', 'InvoicePaymentController@edit')->name('edit');
|
||||
|
||||
@@ -6,5 +6,5 @@ Route::prefix('Invoices')->name('Invoices.')->group(function () {
|
||||
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');
|
||||
Route::get('edit/{id?}', 'InvoiceController@edit')->name('edit');
|
||||
});
|
||||
|
||||
@@ -7,4 +7,5 @@ Route::prefix('Clients')->name('Customers.')->group(function () {
|
||||
Route::get('edit', 'CustomerController@edit')->name('edit');
|
||||
Route::post('storeProfileAjax', 'CustomerController@storeProfileAjax')->name('storeProfileAjax');
|
||||
Route::post('store', 'CustomerController@store')->name('store');
|
||||
Route::get('delete_address/{$id?}', 'CustomerController@delete_address')->name('delete_address');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user