Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/release-notes-and-upgrade/upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ New tables will have a pre-configured name via the `powergrid:create` command.

```php
public string $tableName = 'default';// [!code --]
public string $tableName = 'users-table'; // [!code ++]
// Ex: admin-users-table, dishes, category-table
public string $tableName = 'usersTable'; // [!code ++]
// Ex: adminUsersTable, dishesTable, categoryTable
```

## JS Imports
Expand Down
2 changes: 1 addition & 1 deletion docs/table-component/component-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use PowerComponents\LivewirePowerGrid\PowerGridComponent;

class DishTable extends PowerGridComponent
{
public string $tableName = 'DishTable';// [!code ++]
public string $tableName = 'dishTable';// [!code ++]
}
````

Expand Down