mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-21 05:24:17 +00:00
24 lines
308 B
PHP
24 lines
308 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Contact extends Model
|
|
{
|
|
protected $fillable = ['com_id'];
|
|
|
|
public function user() {
|
|
|
|
return $this->belongsTo('App\User');
|
|
|
|
}
|
|
|
|
public function companies(){
|
|
|
|
return $this->belongsTo('App\Company');
|
|
|
|
}
|
|
|
|
}
|