AntonyPL
05/03/2023, 7:44 PMpauldwight
05/04/2023, 8:12 AMphp
'dashboard' => [
'modules' => [
'pages' => [
'name' => 'pages', // module name
'repository' => 'App\Twill\Capsules\Pages\Repositories\PageRepository',
'label' => 'pages',
'label_singular' => 'page',
'count' => true,
'create' => true,
'activity' => true,
]
]
],
But you also need to set-up the morphMap for pages in AppServiceProvider::boot()
php
Relation::morphMap([
'pages' => 'App\Twill\Capsules\Models\Page',
]);
AntonyPL
05/04/2023, 9:37 AM