rias/statamic-collection-groups

此软件包最新版本(v1.1.0)没有提供许可证信息。

v1.1.0 2022-05-18 10:12 UTC

This package is auto-updated.

Last update: 2024-09-18 15:12:28 UTC


README

Latest Version

收集组

Statamic 3 的收集组

将收集项分组到单独的组中,这也会从“收集项”导航项中删除收集项

安装

使用 Composer 需求它。

composer require rias/statamic-collection-groups

发布配置文件

php artisan vendor:publish --provider="Rias\CollectionGroups\ServiceProvider"

配置文件将在 config/statamic/collection-groups.php 中。

您可以在配置文件中提供数组来创建组

<?php
return [
    'Group 1 label' => [
        'collection_handle_1',
        'collection_handle_2',
    ],
    'Group 2 label' => [
        'collection_handle_3',
        'collection_handle_4',
    ]
];

Rias 提供