Using a mutator to save currency
When user enters Pounds & Pence or Dollars & Cents
public function setPoundsAttribute($value)
{
$this->each = strval($value*100);
}
public function getPoundsAttribute()
{
return number_format($this->each/100,2);
}PreviousShow custom page when email verification link expiredNextUsing Spatie Valuestore to hold frequently accessed settings
Last updated