AlertLog model cast details (#15143)

* AlertLog model cast details

* Style fix
This commit is contained in:
Tony Murray
2023-07-24 10:01:07 -05:00
committed by GitHub
parent e9668550af
commit 9b077df610

View File

@@ -2,6 +2,7 @@
namespace App\Models;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class AlertLog extends DeviceRelatedModel
@@ -11,4 +12,12 @@ class AlertLog extends DeviceRelatedModel
public const UPDATED_AT = null;
public const CREATED_AT = 'time_logged';
protected $table = 'alert_log';
protected function details(): Attribute
{
return Attribute::make(
get: fn ($details) => json_decode(@gzuncompress($details), true) ?? [],
set: fn ($details) => gzcompress(json_encode($details)),
)->shouldCache();
}
}