20 lines
405 B
PHP
20 lines
405 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Stats;
|
||
|
|
|
||
|
|
class StatAlert extends BaseStatModel
|
||
|
|
{
|
||
|
|
protected $table = 'stat_alerts';
|
||
|
|
|
||
|
|
public $timestamps = false;
|
||
|
|
|
||
|
|
protected $casts = [
|
||
|
|
'current_value' => 'decimal:2',
|
||
|
|
'threshold_value' => 'decimal:2',
|
||
|
|
'is_read' => 'boolean',
|
||
|
|
'is_resolved' => 'boolean',
|
||
|
|
'resolved_at' => 'datetime',
|
||
|
|
'created_at' => 'datetime',
|
||
|
|
];
|
||
|
|
}
|