/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Models
Edit: /home/techb158/immovalet.com/platform/plugins/ecommerce/src/Models/OrderHistory.php (1162B)
belongsTo(User::class, 'user_id', 'id')->withDefault();
}
/**
* @return BelongsTo
*/
public function order()
{
return $this->belongsTo(Order::class, 'order_id', 'id')->withDefault();
}
/**
* @param string $value
* @return array
*/
public function getExtrasAttribute($value)
{
try {
return json_decode($value, true) ?: [];
} catch (Exception $exception) {
return [];
}
}
}