PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
base
/
src
/
Models
<?php namespace Botble\Base\Models; use Eloquent; use Illuminate\Support\Str; use MacroableModels; use Illuminate\Database\Eloquent\Relations\MorphMany; use MetaBox as MetaBoxSupport; class BaseModel extends Eloquent { /** * @param string $key * @return mixed */ public function __get($key) { if (class_exists('MacroableModels')) { $method = 'get' . Str::studly($key) . 'Attribute'; if (MacroableModels::modelHasMacro(get_class($this), $method)) { return call_user_func([$this, $method]); } } return parent::__get($key); } /** * @return MorphMany */ public function metadata() { return $this->morphMany(MetaBox::class, 'reference') ->select([ 'reference_id', 'reference_type', 'meta_key', 'meta_value', ]); } /** * @param string $key * @param bool $single * @return string|array */ public function getMetaData(string $key, bool $single = false) { $field = $this->metadata->where('meta_key', $key)->first(); if (!$field) { return $single ? '' : []; } return MetaBoxSupport::getMetaData($field, $key, $single); } }
[-] ProductBannerContent.php
[edit]
[+]
..
[-] MetaBox.php
[edit]
[-] HomeTitle.php
[edit]
[-] BaseModel.php
[edit]