mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
17 lines
381 B
PHP
17 lines
381 B
PHP
<?php namespace App\Ninja\Presenters;
|
|
|
|
use Utils;
|
|
use Laracasts\Presenter\Presenter;
|
|
// vendor
|
|
class VendorPresenter extends Presenter {
|
|
|
|
public function country()
|
|
{
|
|
return $this->entity->country ? $this->entity->country->name : '';
|
|
}
|
|
|
|
public function link()
|
|
{
|
|
return link_to('/vendors/' . $this->entity->public_id, $this->entity->name);
|
|
}
|
|
} |