mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
19 lines
334 B
PHP
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');
|
|
}
|
|
|
|
}
|