mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
24 lines
730 B
PHP
24 lines
730 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Transformers;
|
|
|
|
use App\Models\VendorContact;
|
|
|
|
// vendor
|
|
class VendorContactTransformer extends EntityTransformer
|
|
{
|
|
public function transform(VendorContact $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 ?: '',
|
|
]);
|
|
}
|
|
}
|