Files
alrahma_sunday_school_api/app/Http/Resources/Families/FamilySearchItemResource.php
T
2026-03-10 17:52:47 -04:00

19 lines
446 B
PHP

<?php
namespace App\Http\Resources\Families;
use Illuminate\Http\Resources\Json\JsonResource;
class FamilySearchItemResource extends JsonResource
{
public function toArray($request): array
{
return [
'type' => (string) ($this['type'] ?? ''),
'id' => (int) ($this['id'] ?? 0),
'label' => (string) ($this['label'] ?? ''),
'sub' => (string) ($this['sub'] ?? ''),
];
}
}