tethys/app/Models/CollectionRole.php

33 lines
778 B
PHP
Raw Normal View History

2018-10-04 14:41:29 +00:00
<?php
namespace App\Models;
use App\Models\Collection;
// use App\Models\Dataset;
2018-10-04 14:41:29 +00:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
2018-10-04 14:41:29 +00:00
class CollectionRole extends Model
{
use HasFactory;
2018-10-04 14:41:29 +00:00
protected $table = 'collections_roles';
public $timestamps = false;
protected $fillable = [
'name',
'oai_name',
'visible',
];
// public function documents()
// {
// return $this->belongsToMany(Dataset::class, 'link_documents_collections', 'role_id', 'document_id');
// }
public function collections()
{
//model, foreign key on the Collection model is role_id, local id of this is id
return $this->hasMany(Collection::class, 'role_id', 'id');
}
}