mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
33 lines
901 B
PHP
33 lines
901 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Transformers;
|
|
|
|
use App\Models\Contact;
|
|
|
|
/**
|
|
* Class ContactTransformer.
|
|
*/
|
|
class ContactTransformer extends EntityTransformer
|
|
{
|
|
/**
|
|
* @param Contact $contact
|
|
*
|
|
* @return array
|
|
*/
|
|
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,
|
|
]);
|
|
}
|
|
}
|