¨4.0.1¨
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
namespace Modules\Meta\Eloquent;
|
||||
|
||||
use Modules\Meta\Entities\MetaData;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\MorphToMany;
|
||||
|
||||
trait HasMetaData
|
||||
{
|
||||
@@ -18,24 +20,27 @@ trait HasMetaData
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the meta for the entity.
|
||||
*
|
||||
* @return \Illuminate\Database\Eloquent\Relations\MorphToMany
|
||||
*/
|
||||
public function meta()
|
||||
{
|
||||
return $this->morphOne(MetaData::class, 'entity')->withDefault();
|
||||
}
|
||||
|
||||
/**
|
||||
* Save meta data for the entity.
|
||||
* Save metadata for the entity.
|
||||
*
|
||||
* @param array $data
|
||||
* @return \Illuminate\Database\Eloquent\Model
|
||||
*
|
||||
* @return Model
|
||||
*/
|
||||
public function saveMetaData($data = [])
|
||||
{
|
||||
$this->meta->fill([locale() => $data])->save();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the meta for the entity.
|
||||
*
|
||||
* @return MorphToMany
|
||||
*/
|
||||
public function meta()
|
||||
{
|
||||
return $this->morphOne(MetaData::class, 'entity')->withDefault();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user