mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-01-02 11:10:51 -05:00
* Fixes for datatables * Implement a BaseModel * Working on reusable header data model * Working on adding session variables * Clean up header data * Random Data Seeder * working on searching datatables across relationships. * Working on transforming primary keys between client and server facinglogic * Updated assets
14 lines
204 B
PHP
14 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
class CompanyPresenter extends EntityPresenter
|
|
{
|
|
|
|
public function name()
|
|
{
|
|
return $this->entity->name ?: trans('texts.untitled_account');
|
|
}
|
|
|
|
}
|