pixelfed/app/CollectionItem.php

14 wiersze
185 B
PHP
Czysty Zwykły widok Historia

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
}