30 lines
634 B
PHP
30 lines
634 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use App\Models\Setting;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
/**
|
|
* @mixin Setting
|
|
*/
|
|
class SettingResource extends JsonResource
|
|
{
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'key' => $this->key,
|
|
'value' => $this->value,
|
|
'group' => $this->group?->value,
|
|
'type' => $this->type?->value,
|
|
'label' => $this->label,
|
|
'order_index' => $this->order_index,
|
|
];
|
|
}
|
|
}
|