### Extension Version v1.0.5 ### PHP Binary Herd ### Operating System macOS ### Description After installing the package, an error occurs regarding Volt support: ``` Route [welcome] not found. Laravel Extension(route) ``` ### Steps to Reproduce 1. Install the package. 2. Add the following code to `routes/web.php`: ```php <?php use Illuminate\Support\Facades\Route; use Livewire\Volt\Volt; Volt::route('/', 'welcome')->name('home'); require __DIR__ . '/auth.php'; ``` ### Expected Behavior The route should be registered without errors. ### Actual Behavior The error message indicates that the route `welcome` is not found.  ### Mimimal Code Sample ```php ```