Add link to WePAY TOS

This commit is contained in:
Hillel Coren 2016-07-18 22:58:56 +03:00
parent 60982deb08
commit 6cc84ddfab

View File

@ -88,6 +88,14 @@ class AccountGatewayDatatable extends EntityDatatable
function($model) { function($model) {
return !$model->deleted_at && $model->gateway_id == GATEWAY_WEPAY; return !$model->deleted_at && $model->gateway_id == GATEWAY_WEPAY;
} }
], [
uctrans('texts.terms_of_service'),
function ($model) {
return 'https://go.wepay.com/terms-of-service-us';
},
function($model) {
return $model->gateway_id == GATEWAY_WEPAY;
}
] ]
]; ];
} }