mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
21 lines
722 B
PHP
21 lines
722 B
PHP
<?php namespace App\Ninja\Transformers;
|
|
|
|
use App\Models\Account;
|
|
use App\Models\Document;
|
|
use League\Fractal;
|
|
|
|
class DocumentTransformer extends EntityTransformer
|
|
{
|
|
public function transform(Document $document)
|
|
{
|
|
return array_merge($this->getDefaults($document), [
|
|
'id' => (int) $document->public_id,
|
|
'name' => $document->name,
|
|
'type' => $document->type,
|
|
'invoice_id' => isset($document->invoice->public_id) ? (int) $document->invoice->public_id : null,
|
|
'expense_id' => isset($document->expense->public_id) ? (int) $document->expense->public_id : null,
|
|
'updated_at' => $this->getTimestamp($document->updated_at),
|
|
]);
|
|
}
|
|
}
|