mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-25 23:34:04 +00:00
entity signature api
This commit is contained in:
+11
-1
@@ -11,13 +11,23 @@ class Entity extends Model
|
||||
{
|
||||
protected $table = 'entities';
|
||||
|
||||
protected $appends = ['hash_id'];
|
||||
protected $appends = ['hash_id', 'entity_signature_list'];
|
||||
|
||||
public function entity_signature()
|
||||
{
|
||||
return $this->hasMany('App\Models\EntitySignature', 'entity_id');
|
||||
}
|
||||
|
||||
public function getHashIdAttribute()
|
||||
{
|
||||
return Hasher::encode('entities', $this->id);
|
||||
}
|
||||
|
||||
public function getEntitySignatureListAttribute()
|
||||
{
|
||||
return $this->entity_signature()->get()->makeHidden(['entity_list']);
|
||||
}
|
||||
|
||||
public function getUpdatedAtAttribute($date)
|
||||
{
|
||||
return $date ? Carbon::parse($date)->timezone('Asia/Kuala_Lumpur')->format('Y-m-d') : '';
|
||||
|
||||
Reference in New Issue
Block a user