invoiceninja/app/Ninja/Presenters/VendorPresenter.php
2019-01-30 21:45:46 +11:00

14 lines
250 B
PHP
Executable file

<?php
namespace App\Ninja\Presenters;
class VendorPresenter extends EntityPresenter
{
/**
* @return string
*/
public function country()
{
return $this->entity->country ? $this->entity->country->getName() : '';
}
}