Update AccountLog model, add fillable attribute

pull/2602/head
Daniel Supernault 2021-01-30 19:56:31 -07:00
rodzic 090b6d0336
commit 1ac60173af
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -6,6 +6,9 @@ use Illuminate\Database\Eloquent\Model;
class AccountLog extends Model
{
protected $fillable = ['*'];
public function user()
{
return $this->belongsTo(User::class);