add uploadspeed + downloadspeed +isp

This commit is contained in:
xiaomlove
2022-07-30 15:06:51 +08:00
parent 8a4f4a77cb
commit 1ed68b6058
28 changed files with 477 additions and 64 deletions

11
app/Models/Isp.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App\Models;
class Isp extends NexusModel
{
protected $table = 'isp';
protected $fillable = ['name'];
}