mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 06:19:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
	
		
			395 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
	
		
			395 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|  | <?php | ||
|  | 
 | ||
|  | namespace App\Models; | ||
|  | 
 | ||
|  | use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
|  | use Illuminate\Database\Eloquent\Model; | ||
|  | 
 | ||
|  | class NetworkSpeed extends Model | ||
|  | { | ||
|  |     use HasFactory; | ||
|  | 
 | ||
|  |     protected $table = 'network_speed'; | ||
|  | 
 | ||
|  |     protected $fillable = ['id', 'server_id', 'location', 'send', 'send_type', 'send_as_mbps', 'receive', 'receive_type', 'receive_as_mbps', 'created_at', 'updated_at']; | ||
|  | } |