Skip to content

Instantly share code, notes, and snippets.

@zhanang19
Created January 7, 2020 02:30
Show Gist options
  • Save zhanang19/b8864cff99ab7750c9ac2c19783fb6a2 to your computer and use it in GitHub Desktop.
Save zhanang19/b8864cff99ab7750c9ac2c19783fb6a2 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
/**
* Get the formatted price.
*
* @return string
*/
public function getFormattedPriceAttribute()
{
return 'Rp. ' . number_format(this->attributes['price'], 0, ',', '.');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment