Skip to main content
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
    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:
    <div class="flex flex-col gap-6">
        <x-advanced-tables::favorites-bar />
    
        {{ $this->table }}
    </div>
    
  4. Finally add the route to routes/web.php.
    Route::get('/user-views', App\Livewire\ListUserViews::class)->middleware(['auth', 'verified']);