I have added this command
php artisan help make:filament-relation-manager ProductResource tags name
and added in ProductResource
public static function getRelations(): array
{
return [
TagsRelationManager::class
];
}
the relation manager is shown successfully in the edit product page, but not shown in the create page. How I can display it in the create page as well?