pixelfed/app/AccountLog.php

17 wiersze
214 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AccountLog extends Model
{
protected $fillable = ['*'];
public function user()
{
return $this->belongsTo(User::class);
}
}