invoiceninja/app/Models/Country.php
Jeramy Simpson 04c392136e Add Files
2015-03-17 07:45:25 +10:00

10 lines
151 B
PHP

<?php
class Country extends Eloquent
{
public $timestamps = false;
protected $softDelete = false;
protected $visible = ['id', 'name'];
}