mirror of https://github.com/pixelfed/pixelfed.git
16 lines
231 B
PHP
16 lines
231 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class ProfileSponsor extends Model
|
||
|
{
|
||
|
public $fillable = ['profile_id'];
|
||
|
|
||
|
public function profile()
|
||
|
{
|
||
|
return $this->belongsTo(Profile::class);
|
||
|
}
|
||
|
}
|