1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00
pixelfed_ynh/app/MediaTag.php
Daniel Supernault 711fc020e7
Add Media Tags
2020-07-14 17:04:51 -06:00

13 lines
183 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MediaTag extends Model
{
public function status()
{
return $this->belongsTo(Status::class);
}
}