14-04-2026

This commit is contained in:
Kevin Adametz 2026-04-14 18:07:45 +02:00
parent f58c709945
commit 0f82fea88a
72 changed files with 7414 additions and 148 deletions

View file

@ -0,0 +1,24 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ProviderUptimeLog extends Model
{
protected $fillable = [
'provider',
'is_up',
'response_time_ms',
'error_message',
'checked_at',
];
protected function casts(): array
{
return [
'is_up' => 'boolean',
'checked_at' => 'datetime',
];
}
}