Skip to content

Commit

Permalink
v2
Browse files Browse the repository at this point in the history
  • Loading branch information
3x1io committed Nov 27, 2024
1 parent 514164f commit ab265e7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,28 @@ finally reigster the plugin on `/app/Providers/Filament/AdminPanelProvider.php`
->plugin(\TomatoPHP\FilamentLocations\FilamentLocationsPlugin::make())
```

## Disable Setting Hub

to disable the setting hub you can use this method

```php
->plugin(\TomatoPHP\FilamentLocations\FilamentLocationsPlugin::make()->settingsHub(false))
```

## Disable Resources

to disable the resources you can use this method

```php
->plugin(
\TomatoPHP\FilamentLocations\FilamentLocationsPlugin::make()
->countries(false)
->languages(false)
->currency(false)
->locations(false)
)
```

## Use Database Driver

to use database driver or if you don't have "sqlite" on your app, you can change the driver on config to "database" first publish the config
Expand Down

0 comments on commit ab265e7

Please sign in to comment.