invoiceninja/app/Datatables/EntityDataTable.php
David Bomba bdb0f43d33
Modules, VueJS (#2552)
* Fix for comparing delete contacts change diffKeys to diff()

* Client create

* Client Settings

* Working on localization

* Refactor DataTables

* protyping blade vs pure vue

* Rebuild test module

* Generic notes module

* Small Client Notes Module

* Tests for TabMenu Trait

* implements tab pills in client screen

* Integrate Modules
2018-12-13 10:23:21 +11:00

38 lines
496 B
PHP

<?php
namespace App\Datatables;
class EntityDatatable
{
/**
* Returns the columns to be displayed and their key/values
* @return array Columns and key/value option pairs
*
* To be used to show/hide columns
*/
public function columns()
{
}
/**
* Display options for the ajax request
* @return array url, type, data
*/
public function ajax()
{
}
/**
* Builds the datatable
* @return DataTable returns a DataTable instance
*/
public function build()
{
}
}