1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Models/Industry.php
2019-01-30 22:25:37 +11:00

25 lines
281 B
PHP

<?php
namespace App\Models;
use Eloquent;
/**
* Class Industry.
*/
class Industry extends Eloquent
{
/**
* @var bool
*/
public $timestamps = false;
/**
* @return mixed
*/
public function getName()
{
return $this->name;
}
}