pixelfed/app/UserFilter.php

16 wiersze
228 B
PHP
Czysty Zwykły widok Historia

2018-07-18 00:05:37 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class UserFilter extends Model
{
2018-08-23 04:23:19 +00:00
protected $fillable = [
2018-08-28 03:07:36 +00:00
'user_id',
'filterable_id',
'filterable_type',
'filter_type',
2018-08-23 04:23:19 +00:00
];
2018-07-18 00:05:37 +00:00
}