mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
18 lines
261 B
PHP
18 lines
261 B
PHP
<?php namespace App\Models;
|
|
|
|
use Eloquent;
|
|
|
|
class Currency extends Eloquent
|
|
{
|
|
public $timestamps = false;
|
|
|
|
protected $casts = [
|
|
'swap_currency_symbol' => 'boolean',
|
|
];
|
|
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
}
|