'object', 'updated_at' => 'timestamp', 'created_at' => 'timestamp', 'deleted_at' => 'timestamp', 'is_deleted' => 'bool', 'is_shipping_locaiton', ]; protected $touches = []; public function client() { return $this->belongsTo(Client::class); } public function user() { return $this->belongsTo(User::class); } public function vendor() { return $this->belongsTo(Vendor::class); } public function company() { return $this->belongsTo(Company::class); } public function country() { return $this->belongsTo(Country::class); } public function getEntityType() { return self::class; } }