mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
14 lines
184 B
PHP
14 lines
184 B
PHP
<?php namespace App\Models;
|
|
|
|
use Eloquent;
|
|
|
|
class Language extends Eloquent
|
|
{
|
|
public $timestamps = false;
|
|
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
}
|