diff --git a/app/Ninja/Datatables/AccountGatewayDatatable.php b/app/Ninja/Datatables/AccountGatewayDatatable.php index b5759cfbd2b8..09c701873462 100644 --- a/app/Ninja/Datatables/AccountGatewayDatatable.php +++ b/app/Ninja/Datatables/AccountGatewayDatatable.php @@ -88,6 +88,14 @@ class AccountGatewayDatatable extends EntityDatatable function($model) { 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; + } ] ]; }