27-05-2026 DHL Modul v2.1 / Optimierung tracking

This commit is contained in:
Kevin Adametz 2026-05-27 18:51:23 +02:00
parent 036595be94
commit 2bdc9ada3c
33 changed files with 2367 additions and 2086 deletions

View file

@ -299,9 +299,14 @@ Route::domain(config('app.pre_url_crm').config('app.domain').config('app.tld_car
Route::get('/shipment/{shipment}/download-label', 'DhlShipmentController@downloadLabel')->name('admin.dhl.download-label');
Route::post('/batch-action', 'DhlShipmentController@batchAction')->name('admin.dhl.batch-action');
Route::post('/test-login', 'DhlShipmentController@testLogin')->name('admin.dhl.test_login');
Route::get('/public/track', 'DhlShipmentController@track')->name('public.tracking');
});
// The previously registered `public.tracking` route lived inside this
// admin group, which made it auth/admin protected and therefore not
// actually public. The real public tracking page is defined on the
// main domain in `routes/domains/main.php`. It is intentionally not
// duplicated here.
// products attributes
Route::get('/admin/product/attributes', 'AttributeController@index')->name('admin_product_attributes');
Route::post('/admin/product/attribute/store', 'AttributeController@store')->name('admin_product_attribute_store');