mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
41 lines
849 B
PHP
41 lines
849 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Ninja\Datatables;
|
||
|
|
||
|
use URL;
|
||
|
|
||
|
class SubscriptionDatatable extends EntityDatatable
|
||
|
{
|
||
|
public $entityType = ENTITY_SUBSCRIPTION;
|
||
|
|
||
|
public function columns()
|
||
|
{
|
||
|
return [
|
||
|
[
|
||
|
'event',
|
||
|
function ($model) {
|
||
|
return trans('texts.subscription_event_' . $model->event);
|
||
|
},
|
||
|
],
|
||
|
[
|
||
|
'target',
|
||
|
function ($model) {
|
||
|
return $model->target;
|
||
|
},
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
public function actions()
|
||
|
{
|
||
|
return [
|
||
|
[
|
||
|
uctrans('texts.edit_subscription'),
|
||
|
function ($model) {
|
||
|
return URL::to("subscriptions/{$model->public_id}/edit");
|
||
|
},
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
}
|