pixelfed/app/AccountLog.php

17 wiersze
214 B
PHP

2018-05-20 21:48:53 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
2018-07-12 16:36:20 +00:00
class AccountLog extends Model
2018-05-20 21:48:53 +00:00
{
protected $fillable = ['*'];
2019-02-03 21:47:01 +00:00
public function user()
{
return $this->belongsTo(User::class);
}
2018-05-20 21:48:53 +00:00
}