> ## 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.

# Ignoring multi-tenancy

> Disable tenant scoping so User Views and Preset Views are shared across all tenants.

If you are using multi-tenancy in your app, but would prefer User Views and Preset Views to *not* be scoped to each tenant (i.e. a user's views would be the same regardless of which tenant they are in), you may ignore multi-tenancy in the plugin by passing `false` to the `->scopeToTenancy()` method:

```php theme={null}
AdvancedTablesPlugin::make()
    ->scopeToTenancy(false)
```
