mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
19 lines
556 B
PHP
19 lines
556 B
PHP
<?php namespace App\Ninja\Import\Hiveage;
|
|
|
|
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_total,
|
|
'payment_date_sql' => $this->getDate($data->last_paid_on),
|
|
'client_id' => $data->client_id,
|
|
'invoice_id' => $data->invoice_id,
|
|
];
|
|
});
|
|
}
|
|
} |