16 lines
328 B
PHP
16 lines
328 B
PHP
<?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');
|
|
}
|
|
} |