added vpn feature to mno

This commit is contained in:
Kwesi Banson Jnr
2026-08-17 19:37:22 +00:00
parent a797d9587c
commit e4a6a40d16
7 changed files with 329 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class NetworkOperatorConnection extends Model
{
protected $table = 'network_operator_connections';
protected $guarded = [];
public function operator()
{
return $this->belongsTo(NetworkOperator::class, 'network_operator_id');
}
}