mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
16 lines
245 B
PHP
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;
|
|
}
|
|
}
|