tethys/app/Models/Subject.php

25 lines
582 B
PHP
Raw Normal View History

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';
protected $table = 'dataset_subjects';
2019-03-18 13:32:29 +00:00
public $timestamps = false;
protected $fillable = ['value', 'type', 'language'];
2019-03-18 13:32:29 +00:00
// public function dataset()
// {
// return $this->belongsTo(Dataset::class, 'document_id', 'id');
// }
public function datasets()
2019-03-18 13:32:29 +00:00
{
return $this->belongsToMany(Dataset::class, 'link_dataset_subjects', 'subject_id', 'document_id');
2019-03-18 13:32:29 +00:00
}
}