mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02:00
13 lines
185 B
PHP
13 lines
185 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CollectionItem extends Model
|
|
{
|
|
public function collection()
|
|
{
|
|
return $this->belongsTo(Collection::class);
|
|
}
|
|
}
|