Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created August 4, 2022 15:16
Show Gist options
  • Save NandoKstroNet/303f1c33095c8f246073a610b455f7c2 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/303f1c33095c8f246073a610b455f7c2 to your computer and use it in GitHub Desktop.
Trecho Order Model, single database com Laravel no modelo Multi-Tenancy. Em https://codeexperts.com.br
<?php
public function setShippingValueAttribute($prop)
{
$this->attributes['shipping_value'] = $prop * 100;
}
public function getShippingValueAttribute()
{
return $this->attributes['shipping_value'] / 100;
}
public function getItemsAttribute()
{
return unserialize($this->attributes['items']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment