Arno Kaimbacher
8f0b12fbf0
- doi_datacite.xslt: show Subtitle - further tests in DoiClientTest.php - DoiController.php: safe DOI metadta in table dataset_identifiers
20 lines
403 B
PHP
20 lines
403 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use App\Models\Dataset;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DatasetIdentifier extends Model
|
|
{
|
|
protected $table = 'dataset_identifiers';
|
|
protected $guarded = array();
|
|
|
|
/**
|
|
* The dataset that belong to the DocumentIdentifier.
|
|
*/
|
|
public function dataset()
|
|
{
|
|
return $this->belongsTo(Dataset::class, 'document_id', 'id');
|
|
}
|
|
}
|