JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "LoadCustomPageMenuItems.php"

Full Path: /home/markqprx/iniasli.pro/common/Pages/LoadCustomPageMenuItems.php
File size: 629 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Common\Pages;

use Illuminate\Support\Collection;

class LoadCustomPageMenuItems
{
    public function execute(): Collection
    {
        return app(CustomPage::class)
            ->limit(20)
            ->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',
                ];
            });
    }
}