pixelfed/app/UserFilter.php

16 wiersze
203 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 = [
'user_id',
'filterable_id',
'filterable_type',
'filter_type'
];
2018-07-18 00:05:37 +00:00
}