name('yoco-webhook'); // Trello webhook Route::match(['post', 'head', 'options'], '/webhooks/trello', [TrelloWebhookController::class, 'handle'])->name('trello-webhook'); // Courier webhook Route::post('/webhooks/courier', [CourierWebhookController::class, 'handle'])->name('courier-webhook');