2019-03-18 13:32:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use App\Models\Dataset;
|
|
|
|
|
|
|
|
class Subject extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'document_subjects';
|
|
|
|
public $timestamps = false;
|
|
|
|
|
2019-06-21 14:00:51 +00:00
|
|
|
protected $fillable = ['value', 'type', 'language'];
|
2019-03-18 13:32:29 +00:00
|
|
|
|
|
|
|
public function dataset()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Dataset::class, 'document_id', 'id');
|
|
|
|
}
|
|
|
|
}
|