1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Ninja/Presenters/VendorPresenter.php
2016-05-23 12:26:08 +03:00

11 lines
212 B
PHP

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