Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
28 lines
476 B
PHP
28 lines
476 B
PHP
<?php
|
|
|
|
namespace App\ExportResources\Account;
|
|
|
|
use App\ExportResources\ExportResource;
|
|
|
|
class Addressbook extends ExportResource
|
|
{
|
|
protected $columns = [
|
|
'uuid',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
|
|
protected $properties = [
|
|
'name',
|
|
'description',
|
|
];
|
|
|
|
public function data(): ?array
|
|
{
|
|
return [
|
|
'user' => $this->user->uuid,
|
|
'contacts' => $this->contacts->mapUuid(),
|
|
];
|
|
}
|
|
}
|