1
0
Fork 0
forked from mirror/pixelfed
pixelfed/app/Models/ProfileAlias.php

20 lines
322 B
PHP
Raw Normal View History

2023-08-07 23:48:58 -06:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use App\Profile;
class ProfileAlias extends Model
{
use HasFactory;
2024-03-02 04:21:04 -07:00
protected $guarded = [];
2023-08-07 23:48:58 -06:00
public function profile()
{
return $this->belongsTo(Profile::class);
}
}