mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 06:32:40 +01:00
10 lines
151 B
PHP
Executable File
10 lines
151 B
PHP
Executable File
<?php
|
|
|
|
class Country extends Eloquent
|
|
{
|
|
public $timestamps = false;
|
|
protected $softDelete = false;
|
|
|
|
protected $visible = ['id', 'name'];
|
|
}
|