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

33 lines
857 B
PHP

<?php
namespace App\Http\Resources;
use App\Models\Comment;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
/**
* @mixin Comment
*/
class CommentResource extends JsonResource
{
/**
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return [
'id' => $this->id,
'commentable_type' => $this->commentable_type,
'commentable_id' => $this->commentable_id,
'author_name' => $this->author_name,
'content' => $this->content,
'rating' => $this->rating,
'is_approved' => $this->is_approved,
'admin_reply' => $this->admin_reply,
'created_at' => $this->created_at?->toISOString(),
'updated_at' => $this->updated_at?->toISOString(),
];
}
}