keep database\factories
This commit is contained in:
parent
ffbbc04206
commit
d65f7ced34
4 changed files with 8 additions and 7 deletions
|
@ -1,6 +1,8 @@
|
|||
<?php
|
||||
namespace App\Library\Xml;
|
||||
|
||||
use App\Models\Title;
|
||||
|
||||
/**
|
||||
* DatasetExtension short summary.
|
||||
*
|
||||
|
@ -13,12 +15,12 @@ trait DatasetExtension
|
|||
{
|
||||
protected $_externalFields = array(
|
||||
'TitleMain' => array(
|
||||
'model' => 'App\Title',
|
||||
'model' => Title::class,
|
||||
'options' => array('type' => 'main'),
|
||||
'fetch' => 'eager'
|
||||
),
|
||||
'TitleAbstract' => array(
|
||||
'model' => 'App\Title',
|
||||
'model' => Title::class,
|
||||
'options' => array('type' => 'abstract'),
|
||||
'fetch' => 'eager'
|
||||
),
|
||||
|
@ -53,7 +55,6 @@ trait DatasetExtension
|
|||
),
|
||||
);
|
||||
|
||||
|
||||
protected $_internalFields = array();
|
||||
|
||||
protected $_fields = array();
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue