Files
izyim-api/app/Contact.php
T
Zain Fauzan Rofie Azizi 90286315f2 change to small letter
2018-06-20 12:02:45 +08:00

29 lines
318 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);
}
}