Files
bogazici-api/app/Http/Resources/FaqResource.php
2026-03-27 10:41:54 +03:00

31 lines
731 B
PHP

<?php
namespace App\Http\Resources;
use App\Models\Faq;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
/**
* @mixin Faq
*/
class FaqResource extends JsonResource
{
/**
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return [
'id' => $this->id,
'question' => $this->question,
'answer' => $this->answer,
'category' => $this->category?->value,
'order_index' => $this->order_index,
'is_active' => $this->is_active,
'created_at' => $this->created_at?->toISOString(),
'updated_at' => $this->updated_at?->toISOString(),
];
}
}