Manually registering Filaments routes

Is there a way to disable the automatic registration of routes with Filament, so that I can manually register them?

I don't want to build the routes myself, I just want to be able to have something like the following:

Route::middleware([...])
     ->prefix('...')
     ->group(function () {
         Filament::routes();
     });
Was this page helpful?