1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 18:48:21 +00:00
pixelfed/app/MediaTag.php

22 lines
321 B
PHP
Raw Normal View History

2020-07-14 17:04:51 -06:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MediaTag extends Model
{
2023-01-21 07:48:27 -07:00
protected $guarded = [];
protected $visible = [
'status_id',
'profile_id',
'tagged_username',
];
2020-07-14 17:04:51 -06:00
public function status()
{
return $this->belongsTo(Status::class);
2020-07-14 17:04:51 -06:00
}
}