2019-03-18 14:32:29 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use App\Models\Dataset;
|
2022-08-10 11:18:10 +02:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2019-03-18 14:32:29 +01:00
|
|
|
|
|
|
|
class Subject extends Model
|
|
|
|
{
|
2022-08-10 11:18:10 +02:00
|
|
|
Use HasFactory;
|
2021-06-07 16:53:45 +02:00
|
|
|
// protected $table = 'document_subjects';
|
|
|
|
protected $table = 'dataset_subjects';
|
2019-03-18 14:32:29 +01:00
|
|
|
public $timestamps = false;
|
|
|
|
|
2019-06-21 16:00:51 +02:00
|
|
|
protected $fillable = ['value', 'type', 'language'];
|
2019-03-18 14:32:29 +01:00
|
|
|
|
2021-06-07 16:53:45 +02:00
|
|
|
// public function dataset()
|
|
|
|
// {
|
|
|
|
// return $this->belongsTo(Dataset::class, 'document_id', 'id');
|
|
|
|
// }
|
|
|
|
public function datasets()
|
2019-03-18 14:32:29 +01:00
|
|
|
{
|
2021-06-07 16:53:45 +02:00
|
|
|
return $this->belongsToMany(Dataset::class, 'link_dataset_subjects', 'subject_id', 'document_id');
|
2019-03-18 14:32:29 +01:00
|
|
|
}
|
|
|
|
}
|