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