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

12 lines
247 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 : '';
}
}