invoiceninja/app/models/Country.php

9 lines
143 B
PHP
Raw Normal View History

2013-11-28 23:10:01 +02:00
<?php
class Country extends Eloquent
{
2014-01-08 20:09:47 +00:00
public $timestamps = false;
protected $softDelete = false;
2014-01-06 20:03:00 +02:00
protected $visible = ['id', 'name'];
2013-11-28 23:10:01 +02:00
}