Files
izyim-api/app/Contact.php
T
Zain Fauzan Rofie Azizi 8fe45348f5 relationship path fixed
2018-07-06 10:54:12 +08:00

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);
}
}