pixelfed/app/Models/ProfileAlias.php

20 lines
322 B
PHP
Raw Normal View History

2023-08-08 05:48:58 +00: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 11:21:04 +00:00
protected $guarded = [];
2023-08-08 05:48:58 +00:00
public function profile()
{
return $this->belongsTo(Profile::class);
}
}