name('externaltoken.auth'); Route::get('externaltoken/callback', [ExternalTokenCallbackController::class, 'index']) ->name('externaltoken.callback'); Route::get('externalprofile/{externalprofile}/sync', [SyncExternalProfileController::class, 'show']) ->name('externalprofile.sync.show'); Route::post('externalprofile/{externalprofile}/sync', [SyncExternalProfileController::class, 'update']) ->name('externalprofile.sync.update');