Files
alrahma_sunday_school_api/app/Http/Resources/Whatsapp/WhatsappParentContactResource.php
T
2026-03-10 16:31:35 -04:00

20 lines
535 B
PHP

<?php
namespace App\Http\Resources\Whatsapp;
use Illuminate\Http\Resources\Json\JsonResource;
class WhatsappParentContactResource extends JsonResource
{
public function toArray($request): array
{
return [
'firstname' => (string) ($this['firstname'] ?? ''),
'lastname' => (string) ($this['lastname'] ?? ''),
'email' => (string) ($this['email'] ?? ''),
'phone' => (string) ($this['phone'] ?? ''),
'type' => (string) ($this['type'] ?? ''),
];
}
}