20 lines
402 B
PHP
20 lines
402 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Mnonote extends Model
|
|
{
|
|
protected $guarded = array('id');
|
|
public $table = "mno_notes";
|
|
|
|
public function mno_info(){
|
|
return $this->hasOne('App\Models\NetworkOps', 'id', 'mno_id');
|
|
}
|
|
|
|
public function created_by_info(){
|
|
return $this->hasOne('App\Models\SystemUser', 'id', 'user_id');
|
|
}
|
|
}
|