forked from mirror/pixelfed
25 lines
491 B
PHP
25 lines
491 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class HashtagRelated extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = [];
|
|
|
|
/**
|
|
* The attributes that should be mutated to dates and other custom formats.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'related_tags' => 'array',
|
|
'last_calculated_at' => 'datetime',
|
|
'last_moderated_at' => 'datetime',
|
|
];
|
|
}
|