1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 22:22:32 +01: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 : '';
}
}