1
0
Fork 0
pixelfed/app/AccountLog.php

17 lines
214 B
PHP
Raw Normal View History

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
}