Files
mtdb_movie/common/Pages/LoadCustomPageMenuItems.php
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

26 lines
629 B
PHP
Executable File

<?php
namespace Common\Pages;
use Illuminate\Support\Collection;
class LoadCustomPageMenuItems
{
public function execute(): Collection
{
return app(CustomPage::class)
->limit(40)
->where('type', 'default')
->get()
->map(function (CustomPage $page) {
return [
'id' => $page->id,
'label' => $page->title ?: $page->slug,
'action' => "/pages/{$page->slug}",
'model_id' => $page->id,
'type' => 'customPage',
];
});
}
}