mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
43 lines
900 B
PHP
43 lines
900 B
PHP
|
<?php namespace App\Ninja\Datatables;
|
||
|
|
||
|
use Utils;
|
||
|
use URL;
|
||
|
use Auth;
|
||
|
|
||
|
class BankAccountDatatable extends EntityDatatable
|
||
|
{
|
||
|
public $entityType = ENTITY_BANK_ACCOUNT;
|
||
|
|
||
|
public function columns()
|
||
|
{
|
||
|
return [
|
||
|
[
|
||
|
'bank_name',
|
||
|
function ($model) {
|
||
|
return link_to("bank_accounts/{$model->public_id}/edit", $model->bank_name)->toHtml();
|
||
|
},
|
||
|
],
|
||
|
[
|
||
|
'bank_library_id',
|
||
|
function ($model) {
|
||
|
return 'OFX';
|
||
|
}
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
public function actions()
|
||
|
{
|
||
|
return [
|
||
|
[
|
||
|
uctrans('texts.edit_bank_account'),
|
||
|
function ($model) {
|
||
|
return URL::to("bank_accounts/{$model->public_id}/edit");
|
||
|
},
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|