'boolean', 'is_fluid' => 'boolean', 'is_active' => 'boolean', ]; /** * The accessors to append to the model's array form. * * @var array */ protected $appends = ['background_image']; /** * The attributes that are translatable. * * @var array */ protected $translatedAttributes = ['name']; /** * Perform any actions required after the model boots. * * @return void */ protected static function booted() { static::addGlobalScope('not_root', function ($query) { $query->where('is_root', false); }); static::addActiveGlobalScope(); } public function menu() { return $this->belongsTo(Menu::class); } public function children() { return $this->hasMany(MenuItem::class, 'parent_id'); } public function category() { return $this->belongsTo(Category::class); } public function page() { return $this->belongsTo(Page::class); } /** * Set the menu item's page id. * * @param int $pageId * @return void */ public function setPageIdAttribute($pageId) { $this->attributes['page_id'] = $pageId; } /** * Set the menu item's parent id. * * @param int $parentId * @return void */ public function setParentIdAttribute($parentId) { $this->attributes['parent_id'] = $parentId; } /** * Get the menu item's background image. * * @return \Modules\Media\Entities\File */ public function getBackgroundImageAttribute() { return $this->files->where('pivot.zone', 'background_image')->first() ?: new File; } /** * Determine if the menu item has any children. * * @return bool */ public function hasChildren() { return $this->items->isNotEmpty(); } /** * Determine if the menu item type is category. * * @return bool */ public function isCategoryType() { return $this->type === 'category'; } /** * Determine if the menu item type is page. * * @return bool */ public function isPageType() { return $this->type === 'page'; } /** * Determine if the menu item type is url. * * @return bool */ public function isUrlType() { return $this->type === 'url'; } /** * Returns the public url for the menu item. * * @return string */ public function url() { if ($this->isCategoryType()) { return optional($this->category)->url(); } if ($this->isPageType()) { return optional($this->page)->url(); } if ($this->getAttributeFromArray('url') === '#') { return '#'; } if (filter_var($this->getAttributeFromArray('url'), FILTER_VALIDATE_URL)) { return $this->getAttributeFromArray('url'); } return localized_url(locale(), $this->getAttributeFromArray('url')); } /** * Get the root menu item for the given menu id. * * @param int $menuId * @return $this */ public static function root($menuId) { return static::withoutGlobalScope('not_root') ->where('menu_id', $menuId) ->firstOrFail(); } /** * Get the parents of the given menuId. * * @param int $menuId * @param int $menuItemId * @return array */ public static function parents($menuId, $menuItemId) { return static::withoutGlobalScope('active') ->where('id', '!=', $menuItemId) ->where('menu_id', $menuId) ->get() ->noCleaning() ->nest() ->setIndent('¦–– ') ->listsFlattened('name'); } }