whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
app
/
Transformers
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/app/Transformers/PaymentTermTransformer.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ namespace App\Transformers; use App\Models\PaymentTerm; use App\Utils\Traits\MakesHash; class PaymentTermTransformer extends EntityTransformer { use MakesHash; public function transform(PaymentTerm $payment_term) { return [ 'id' => (string) $this->encodePrimaryKey($payment_term->id), 'num_days' => (int) $payment_term->num_days, 'name' => (string) ctrans('texts.payment_terms_net').' '.$payment_term->getNumDays(), 'is_deleted' => (bool) $payment_term->is_deleted, 'created_at' => (int) $payment_term->created_at, 'updated_at' => (int) $payment_term->updated_at, 'archived_at' => (int) $payment_term->deleted_at, ]; } }
Copyright ©2021 || Defacer Indonesia