mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
31 lines
712 B
PHP
31 lines
712 B
PHP
<?php namespace App\Ninja\Presenters;
|
|
|
|
use URL;
|
|
use Utils;
|
|
|
|
class ClientPresenter extends EntityPresenter {
|
|
|
|
public function country()
|
|
{
|
|
return $this->entity->country ? $this->entity->country->name : '';
|
|
}
|
|
|
|
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>";
|
|
}
|
|
}
|