Files
izyim/app/Models/CustomerRelation.php
T
2019-07-18 17:36:36 +08:00

19 lines
334 B
PHP

<?php
namespace App\Models;
class CustomerRelation extends AbstractModel
{
protected $table = 'customer_relation';
protected $fillable = [
'forwarder_id', 'company_id', 'customer_rate', 'wave'
];
public function forwarder()
{
return $this->belongsTo(Forwarder::class, 'forwarder_id');
}
}