> For the complete documentation index, see [llms.txt](https://docs.tomatophp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tomatophp.com/plugins/tomato-subscription/config.md).

# Config

you can publish a config file by using this command

```bash
php artisan vendor:publish --tag="tomato-subscription-config"
```

you can publish view files by use this command

```bash
php artisan vendor:publish --tag="tomato-subscription-views"
```

you can publish language files by use this command

```bash
php artisan vendor:publish --tag="tomato-subscription-lang"
```

you can publish migration files by using this command

```bash
php artisan vendor:publish --tag="tomato-subscription-migrations"
```

## Config File

```php
<?php

return [
    'types' => [
        [
            "label" => "Users",
            "id" => \App\Models\User::class
        ],
    ]
];
```
