You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
311 B
16 lines
311 B
<?php
|
|
|
|
namespace App\Entities\Users;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Activity extends Model
|
|
{
|
|
protected $table = 'user_activities';
|
|
|
|
protected $fillable = ['type', 'parent_id', 'user_id', 'object_id', 'object_type', 'data'];
|
|
|
|
protected $casts = [
|
|
'data' => 'array',
|
|
];
|
|
}
|