mirror of
https://github.com/anonaddy/anonaddy
synced 2026-04-25 17:15:29 +02:00
31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class DomainResource extends JsonResource
|
|
{
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'user_id' => $this->user_id,
|
|
'domain' => $this->domain,
|
|
'description' => $this->description,
|
|
'from_name' => $this->from_name,
|
|
'aliases' => [],
|
|
'aliases_count' => $this->whenCounted('aliases_count'),
|
|
'default_recipient' => new RecipientResource($this->whenLoaded('defaultRecipient')),
|
|
'active' => $this->active,
|
|
'catch_all' => $this->catch_all,
|
|
'auto_create_regex' => $this->auto_create_regex,
|
|
'domain_verified_at' => $this->domain_verified_at?->toDateTimeString(),
|
|
'domain_mx_validated_at' => $this->domain_mx_validated_at?->toDateTimeString(),
|
|
'domain_sending_verified_at' => $this->domain_sending_verified_at?->toDateTimeString(),
|
|
'created_at' => $this->created_at->toDateTimeString(),
|
|
'updated_at' => $this->updated_at->toDateTimeString(),
|
|
];
|
|
}
|
|
}
|