1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 18:27:10 +02:00
invoiceninja/app/Ninja/Presenters/ClientPresenter.php

35 lines
868 B
PHP
Raw Normal View History

2015-11-12 21:36:28 +01:00
<?php namespace App\Ninja\Presenters;
use Utils;
use Laracasts\Presenter\Presenter;
class ClientPresenter extends Presenter {
public function country()
{
return $this->entity->country ? $this->entity->country->name : '';
}
2016-02-04 19:36:39 +01:00
public function status()
{
$class = $text = '';
if ($this->entity->is_deleted) {
$class = 'danger';
$text = trans('texts.deleted');
} elseif ($this->entity->trashed()) {
$class = 'warning';
$text = trans('texts.archived');
} else {
$class = 'success';
$text = trans('texts.active');
}
return "<span class=\"label label-{$class}\">{$text}</span>";
2016-02-23 22:32:39 +01:00
}
2016-02-04 19:36:39 +01:00
2016-02-23 22:32:39 +01:00
public function link()
{
return link_to('/clients/' . $this->entity->public_id, $this->entity->getDisplayName());
2016-02-04 19:36:39 +01:00
}
2015-11-12 21:36:28 +01:00
}