invoiceninja/app/Ninja/Import/Invoiceable/PaymentTransformer.php

19 lines
No EOL
556 B
PHP

<?php namespace App\Ninja\Import\Invoiceable;
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
class PaymentTransformer extends BaseTransformer
{
public function transform($data, $maps)
{
return new Item($data, function ($data) use ($maps) {
return [
'amount' => $data->paid,
'payment_date_sql' => $data->date_paid,
'client_id' => $data->client_id,
'invoice_id' => $this->getInvoiceId($data->invoice_id),
];
});
}
}