%PDF-
%PDF-
Mini Shell
Mini Shell
<?php
namespace App\Collection;
use Illuminate\Database\Eloquent\Collection;
class MetaCollection extends Collection
{
/**
* @param string $key
* @return mixed
* @throws \Exception
*/
public function __get($key)
{
if (in_array($key, static::$proxies)) {
return parent::__get($key);
}
if (isset($this->items) && count($this->items)) {
$meta = $this->first(function ($meta) use ($key) {
return $meta->meta_key === $key;
});
return $meta ? $meta->meta_value : null;
}
return null;
}
/**
* @param string $name
* @return bool
*/
public function __isset($name)
{
return !is_null($this->__get($name));
}
}
Zerion Mini Shell 1.0