How can I use moneyphp/money to get the money in dollars from cents?
I am storing price
as cents in my database, and lets say I have this accessor in a laravel model
public function getPriceAttribute($price)
{
$fiver = Money::USD(1425);
dd($fiver->getAmount());
}
the getAmount
method will show 1425
while I am expecting 14.25