mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-27 03:10:49 -05:00
10 lines
151 B
PHP
10 lines
151 B
PHP
<?php
|
|
|
|
class Country extends Eloquent
|
|
{
|
|
public $timestamps = false;
|
|
protected $softDelete = false;
|
|
|
|
protected $visible = ['id', 'name'];
|
|
}
|