mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
dce19e0bea
Signed-off-by: snipe <snipe@snipe.net>
63 lines
1.7 KiB
PHP
63 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Presenters;
|
|
|
|
/**
|
|
* Class DepreciationPresenter
|
|
*/
|
|
class DepreciationPresenter extends Presenter
|
|
{
|
|
/**
|
|
* Json Column Layout for bootstrap table
|
|
* @return string
|
|
*/
|
|
public static function dataTableLayout()
|
|
{
|
|
$layout = [
|
|
[
|
|
'field' => 'id',
|
|
'searchable' => false,
|
|
'sortable' => true,
|
|
'switchable' => true,
|
|
'title' => trans('general.id'),
|
|
'visible' => false,
|
|
], [
|
|
'field' => 'name',
|
|
'searchable' => true,
|
|
'sortable' => true,
|
|
'switchable' => false,
|
|
'title' => trans('general.name'),
|
|
'visible' => true,
|
|
'formatter' => 'depreciationsLinkFormatter',
|
|
],
|
|
|
|
[
|
|
'field' => 'months',
|
|
'searchable' => true,
|
|
'sortable' => true,
|
|
'title' => trans('admin/depreciations/table.term'),
|
|
'visible' => true,
|
|
],
|
|
|
|
[
|
|
"field" => 'depreciation_min',
|
|
"searchable" => false,
|
|
"sortable" => true,
|
|
"title" => trans('admin/depreciations/table.depreciation_min'),
|
|
"visible" => true,
|
|
],
|
|
[
|
|
'field' => 'actions',
|
|
'searchable' => false,
|
|
'sortable' => false,
|
|
'switchable' => false,
|
|
'title' => trans('table.actions'),
|
|
'visible' => true,
|
|
'formatter' => 'depreciationsActionsFormatter',
|
|
],
|
|
];
|
|
|
|
return json_encode($layout);
|
|
}
|
|
}
|