1
0
Fork 0
pixelfed/app/CollectionItem.php

14 lines
185 B
PHP
Raw Normal View History

2018-10-17 18:21:13 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class CollectionItem extends Model
{
2019-02-03 21:48:03 +00:00
public function collection()
{
return $this->belongsTo(Collection::class);
}
2018-10-17 18:21:13 +00:00
}