invoiceninja/app/Models/Presenters/EntityPresenter.php
David Bomba e4f46c2a4e
Presenters, skinned views, model refactoring (#2464)
* Default database connection - set defaults for engine and strict

* Working on tests for refactored model

* Fixes for tests, use polymorphic relationships for Invitations

* skin the password reset pages
2018-10-22 23:04:37 +11:00

54 lines
547 B
PHP

<?php
namespace App\Models\Presenters;
use Laracasts\Presenter\Presenter;
use URL;
use Utils;
use stdClass;
class EntityPresenter extends Presenter
{
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)
{
}
}