Created
August 4, 2022 15:16
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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