1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Models/Currency.php
2016-05-17 22:45:10 +03:00

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;
}
}