> ## Documentation Index
> Fetch the complete documentation index at: https://docs.advancedtables.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Managing User Views

> Create a custom Livewire component to manage User Views when using Filament's standalone Table Builder.

If you are using the Filament Panels, Advanced Tables comes with a `UserViewResource` so admins can manage all of their user's views. If you are using Filament Tables, you can recreate this table:

1. Create a new Livewire component

   ```bash theme={null}
   php artisan make:livewire ListUserViews
   ```

2. Locate the `ListUserViews.php` file in this plugins `Livewire` directory and copy and paste its contents into your newly created `ListFilterSets` component.

3. Add the Favorites Bar to your `list-user-views` view component:

   ```html theme={null}
   <div class="flex flex-col gap-6">
       <x-advanced-tables::favorites-bar />

       {{ $this->table }}
   </div>
   ```

4. Finally add the route to `routes/web.php`.

   ```php theme={null}
   Route::get('/user-views', App\Livewire\ListUserViews::class)->middleware(['auth', 'verified']);
   ```
