@ -17,7 +17,7 @@ class Like extends Model
* @var array
*/
protected $dates = ['deleted_at'];
protected $fillable = ['profile_id', 'status_id'];
protected $fillable = ['profile_id', 'status_id', 'status_profile_id'];
public function actor()
{
@ -19,6 +19,8 @@ class Media extends Model
protected $guarded = [];
protected $casts = [
'srcset' => 'array'
];
@ -6,6 +6,8 @@ use Illuminate\Database\Eloquent\Model;
class MediaTag extends Model
public function status()
return $this->belongsTo(Status::class);
@ -16,6 +16,8 @@ class Mention extends Model
public function profile()
return $this->belongsTo(Profile::class, 'profile_id', 'id');
@ -8,4 +8,6 @@ use Illuminate\Database\Eloquent\Model;
class Conversation extends Model
use HasFactory;
protected $fillable = ['from_id', 'to_id'];
}
@ -11,6 +11,7 @@ class Portfolio extends Model
public $fillable = [
'profile_id',
'active',
'show_captions',
'show_license',
class UserPronoun extends Model
@ -8,6 +8,8 @@ class Report extends Model
protected $dates = ['admin_seen'];
public function url()
return url('/i/admin/reports/show/'.$this->id);
class ReportComment extends Model
return $this->belongsTo(Profile::class);
class ReportLog extends Model
class StatusArchived extends Model