1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Ninja/Presenters/ClientPresenter.php

27 lines
576 B
PHP
Raw Normal View History

2015-11-12 21:36:28 +01:00
<?php namespace App\Ninja\Presenters;
2016-05-23 11:26:08 +02:00
class ClientPresenter extends EntityPresenter {
2015-11-12 21:36:28 +01:00
public function country()
{
return $this->entity->country ? $this->entity->country->name : '';
}
2016-02-04 19:36:39 +01:00
2016-08-07 21:42:32 +02:00
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);
}
2016-05-23 11:26:08 +02:00
}