29 lines
561 B
PHP
29 lines
561 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BackofficeStatisticsSnapshot extends Model
|
|
{
|
|
protected $table = 'backoffice_statistics_snapshots';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'year',
|
|
'month',
|
|
'payload',
|
|
'calculated_at',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'user_id' => 'int',
|
|
'year' => 'int',
|
|
'month' => 'int',
|
|
'payload' => 'array',
|
|
'calculated_at' => 'datetime',
|
|
];
|
|
}
|
|
}
|