area17 / twill

Twill is an open source CMS toolkit for Laravel that helps developers rapidly create a custom admin console that is intuitive, powerful and flexible. Chat with us on Discord at https://discord.gg/cnWk7EFv8R.
https://twillcms.com
Apache License 2.0
3.71k stars 567 forks source link

added support for nested module on the dashboard #2547

Closed zeezo887 closed 3 months ago

zeezo887 commented 5 months ago

Description

This allows nested modules to appear in the activities, drafts, count, and search sections of the dashboard.

Usage:

Add the module to the dashboard.modules array of twill/config.php. e.g.

\App\Models\IssueArticle::class => [
    'name' => 'issues.articles',
    'label' => 'Articles',
    'label_singular' => 'Article',
    'count' => true,
    'activity' => true,
    'draft' => true,
    'search' => true,
    'search_fields' => ['title', 'description'],
    'parentRelationship' => 'issue'
]

Related Issues

Fixes #1697