1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Ninja/Transformers/ProductTransformer.php

21 lines
685 B
PHP
Raw Normal View History

2015-11-19 12:50:35 +01:00
<?php namespace App\Ninja\Transformers;
use App\Models\Product;
use League\Fractal;
class ProductTransformer extends EntityTransformer
{
public function transform(Product $product)
{
2016-05-03 22:02:29 +02:00
return array_merge($this->getDefaults(), [
2015-11-19 12:50:35 +01:00
'id' => (int) $product->public_id,
'product_key' => $product->product_key,
'notes' => $product->notes,
'cost' => $product->cost,
'qty' => $product->qty,
2015-12-15 12:03:01 +01:00
'default_tax_rate_id' =>$product->default_tax_rate_id,
2015-12-28 10:14:21 +01:00
'updated_at' =>$this->getTimestamp($product->updated_at),
2016-02-01 03:32:12 +01:00
'archived_at' => $this->getTimestamp($product->deleted_at),
2016-05-03 22:02:29 +02:00
]);
2015-11-19 12:50:35 +01:00
}
}