better collection handlich in backend
This commit is contained in:
parent
324eacf061
commit
50bcae442e
24 changed files with 623 additions and 68 deletions
29
app/Models/CollectionRole.php
Normal file
29
app/Models/CollectionRole.php
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\Models\Collection;
|
||||
use App\Models\Dataset;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class CollectionRole extends Model
|
||||
{
|
||||
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');
|
||||
}
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue