1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/Models/Country.php
2015-09-07 12:07:55 +03:00

16 lines
245 B
PHP

<?php namespace App\Models;
use Eloquent;
class Country extends Eloquent
{
public $timestamps = false;
protected $visible = ['id', 'name', 'swap_postal_code'];
public function getName()
{
return $this->name;
}
}