- favicons for all platforms
- deleting message box in contact view - optional property for showing heading in PersonTable.vue - showing reference type and additional abstratcs in detail view of dataset - reduced relationTypes for references
This commit is contained in:
parent
ea6288fd0f
commit
0249bcc2c5
27 changed files with 172 additions and 72 deletions
|
@ -213,7 +213,10 @@ class Dataset extends Model
|
|||
{
|
||||
return $this->hasMany(Description::class, 'document_id', 'id');
|
||||
}
|
||||
|
||||
public function additionalAbstracts()
|
||||
{
|
||||
return $this->hasMany(Description::class, 'document_id', 'id')->where('type', '!=', 'Abstract');
|
||||
}
|
||||
public function mainAbstract()
|
||||
{
|
||||
return $this->hasMany(Description::class, 'document_id', 'id')->where('type', 'Abstract')->first();
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue