mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
27 lines
576 B
PHP
27 lines
576 B
PHP
<?php namespace App\Ninja\Presenters;
|
|
|
|
|
|
class ClientPresenter extends EntityPresenter {
|
|
|
|
public function country()
|
|
{
|
|
return $this->entity->country ? $this->entity->country->name : '';
|
|
}
|
|
|
|
public function balance()
|
|
{
|
|
$client = $this->entity;
|
|
$account = $client->account;
|
|
|
|
return $account->formatMoney($client->balance, $client);
|
|
}
|
|
|
|
public function paid_to_date()
|
|
{
|
|
$client = $this->entity;
|
|
$account = $client->account;
|
|
|
|
return $account->formatMoney($client->paid_to_date, $client);
|
|
}
|
|
}
|