mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-31 18:17:20 +01:00
Move models into Models dir
This commit is contained in:
45
app/Models/Speedtest.php
Normal file
45
app/Models/Speedtest.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Speedtest extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'ping',
|
||||
'download',
|
||||
'upload',
|
||||
'created_at',
|
||||
'server_id',
|
||||
'server_name',
|
||||
'server_host',
|
||||
'url',
|
||||
'scheduled',
|
||||
'failed',
|
||||
];
|
||||
|
||||
protected $table = 'speedtests';
|
||||
|
||||
public function formatForInfluxDB()
|
||||
{
|
||||
return [
|
||||
'id' => (int) $this->id,
|
||||
'download' => (float) $this->download,
|
||||
'upload' => (float) $this->upload,
|
||||
'ping' => (float) $this->ping,
|
||||
'server_id' => (int) $this->server_id,
|
||||
'server_host' => $this->server_host,
|
||||
'server_name' => $this->server_name,
|
||||
'scheduled' => (bool) $this->scheduled,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user