D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
diafdxji
/
shihty.com
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Models
/
Filename :
Fee.php
back
Copy
<?php namespace SureCart\Models; use SureCart\Support\Currency; /** * Price model */ class Fee extends Model { /** * Rest API endpoint * * @var string */ protected $endpoint = 'fees'; /** * Object name * * @var string */ protected $object_name = 'fee'; /** * Get the display amount attribute * * @return string */ protected function getDisplayAmountAttribute() { return Currency::format( $this->amount ); } }