Files
alrahma_sunday_school_api/app/Http/Resources/Settings/ConfigurationResource.php
T
2026-03-10 00:48:32 -04:00

18 lines
417 B
PHP

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