1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/Ninja/Presenters/VendorPresenter.php

13 lines
244 B
PHP
Raw Normal View History

2016-01-07 12:04:01 +01:00
<?php namespace App\Ninja\Presenters;
class VendorPresenter extends EntityPresenter
{
/**
* @return string
*/
2016-01-07 12:04:01 +01:00
public function country()
{
return $this->entity->country ? $this->entity->country->name : '';
}
2016-05-23 11:26:08 +02:00
}