invoiceninja/app/Models/Presenters/EntityPresenter.php
David Bomba d430600e1e
Datatables, Base Model, Base Presenter (#2484)
* Fixes for datatables

* Implement a BaseModel

* Working on reusable header data model

* Working on adding session variables

* Clean up header data

* Random Data Seeder

* working on searching datatables across relationships.

* Working on transforming primary keys between client and server facinglogic

* Updated assets
2018-11-02 21:54:46 +11:00

61 lines
715 B
PHP

<?php
namespace App\Models\Presenters;
use App\Utils\Traits\MakesHash;
use Hashids\Hashids;
use Laracasts\Presenter\Presenter;
use URL;
use Utils;
use stdClass;
class EntityPresenter extends Presenter
{
use MakesHash;
public function id()
{
return $this->encodePrimaryKey($this->entity->id);
}
public function url()
{
}
public function path()
{
}
public function editUrl()
{
}
public function statusLabel($label = false)
{
}
public function statusColor()
{
}
public function link()
{
}
public function titledName()
{
}
public function calendarEvent($subColors = false)
{
}
}