27-05-2026 Update DHL Modul v2.0

This commit is contained in:
Kevin 2026-05-27 13:40:38 +00:00
parent 53bdba33cd
commit 036595be94
41 changed files with 3346 additions and 310 deletions

View file

@ -291,6 +291,7 @@ Route::domain(config('app.pre_url_crm').config('app.domain').config('app.tld_car
Route::post('/datatable', 'DhlShipmentController@datatable')->name('admin.dhl.datatable');
Route::get('/shipment/{shipment}', 'DhlShipmentController@show')->name('admin.dhl.show');
Route::post('/shipment', 'DhlShipmentController@store')->name('admin.dhl.store');
Route::post('/validate-address', 'DhlShipmentController@validateAddress')->name('admin.dhl.validate-address');
Route::delete('/shipment/{shipment}/cancel', 'DhlShipmentController@cancel')->name('admin.dhl.cancel');
Route::post('/shipment/{shipment}/return-label', 'DhlShipmentController@createReturnLabel')->name('admin.dhl.create-return');
Route::post('/shipment/{shipment}/update-tracking', 'DhlShipmentController@updateTracking')->name('admin.dhl.update-tracking');