mivita/packages/acme-laravel-dhl/routes/api.php
2025-08-22 18:18:26 +02:00

6 lines
246 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use Acme\Dhl\Http\Controllers\TrackingWebhookController;
Route::post(config('dhl.webhook.route', 'dhl/webhooks/tracking'), [TrackingWebhookController::class, 'handle'])->name('dhl.webhook.tracking');