staff members,senderid, documents,bug fixes, etc
This commit is contained in:
15
app/Models/MnoFile.php
Normal file
15
app/Models/MnoFile.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class MnoFile extends Model
|
||||
{
|
||||
protected $guarded = array('id');
|
||||
public $table = "mno_files";
|
||||
|
||||
public function mno_info(){
|
||||
return $this->hasOne('App\Models\NetworkOps', 'id', 'mno_id');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user