add publish module
This commit is contained in:
parent
100f6db9a6
commit
ffbbc04206
93 changed files with 8150 additions and 10228 deletions
21
app/Models/Title.php
Normal file
21
app/Models/Title.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
namespace App\Models;
|
||||
|
||||
//use App\Library\Xml\DatasetExtension;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Title extends Model
|
||||
{
|
||||
protected $table = 'document_title_abstracts';
|
||||
public $timestamps = false;
|
||||
|
||||
|
||||
protected $fillable = [
|
||||
];
|
||||
|
||||
public function dataset()
|
||||
{
|
||||
return $this->belongsTo(\App\Dataset::class, 'document_id', 'id');
|
||||
}
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue