mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
21 lines
337 B
PHP
21 lines
337 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Presenters;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Class CompanyPresenter
|
||
|
* @package App\Presenters
|
||
|
*/
|
||
|
class CompanyPresenter extends Presenter
|
||
|
{
|
||
|
/**
|
||
|
* Link to this companies name
|
||
|
* @return string
|
||
|
*/
|
||
|
public function nameUrl()
|
||
|
{
|
||
|
return (string) link_to_route('companies.show', $this->name, $this->id);
|
||
|
}
|
||
|
}
|