mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +01:00
12 lines
247 B
PHP
12 lines
247 B
PHP
|
<?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 : '';
|
||
|
}
|
||
|
}
|