### Laravel Version 12.29.0 ### PHP Version 8.4.12 ### Database Driver & Version _No response_ ### Description The commit in https://github.com/laravel/framework/pull/56920 breaks the Livewire setUpdateRoute() function. The custom endpoint is no longer respected and the default is used. As a result, all Livewire components are broken... 😬 Rolling back to src/Illuminate/Routing/RouteCollection.php of v12.28.0 fixes the issue. ### Steps To Reproduce ``` Livewire::setUpdateRoute(function ($handle) { return Route::post('yourcustomendpoint/livewire/update', $handle); }); ```