forked from mirror/pixelfed
18 lines
313 B
PHP
18 lines
313 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class RemoteReport extends Model
|
||
|
{
|
||
|
use HasFactory;
|
||
|
|
||
|
protected $casts = [
|
||
|
'status_ids' => 'array',
|
||
|
'action_taken_meta' => 'array',
|
||
|
'report_meta' => 'array'
|
||
|
];
|
||
|
}
|