mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
24 lines
831 B
PHP
24 lines
831 B
PHP
<?php namespace App\Ninja\Transformers;
|
|
|
|
use App\Models\Account;
|
|
use App\Models\Contact;
|
|
use League\Fractal;
|
|
|
|
class ContactTransformer extends EntityTransformer
|
|
{
|
|
public function transform(Contact $contact)
|
|
{
|
|
return array_merge($this->getDefaults($contact), [
|
|
'id' => (int) $contact->public_id,
|
|
'first_name' => $contact->first_name,
|
|
'last_name' => $contact->last_name,
|
|
'email' => $contact->email,
|
|
'updated_at' => $this->getTimestamp($contact->updated_at),
|
|
'archived_at' => $this->getTimestamp($contact->deleted_at),
|
|
'is_primary' => (bool) $contact->is_primary,
|
|
'phone' => $contact->phone,
|
|
'last_login' => $contact->last_login,
|
|
'send_invoice' => (bool) $contact->send_invoice,
|
|
]);
|
|
}
|
|
} |