1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Models/Country.php
2015-07-02 23:21:29 +03:00

16 lines
225 B
PHP

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