Your IP : 216.73.216.145


Current Path : /home/users/unlimited/www/learnoid.codeskitter.site/app/Http/Resources/
Upload File :
Current File : /home/users/unlimited/www/learnoid.codeskitter.site/app/Http/Resources/TestimonialResource.php

<?php

namespace App\Http\Resources;

use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;

class TestimonialResource extends JsonResource
{
    /**
     * Transform the resource into an array.
     *
     * @return array<string, mixed>
     */
    public function toArray(Request $request): array
    {
        return [
            'id' => $this->id,
            'name' => $this->name,
            'designation' => $this->designation,
            'description' => $this->description,
            'image' => $this->mediaPath,
            'is_active' => $this->is_active,
            'rating' => $this->rating,
            'created_at' => $this->created_at,
        ];
    }
}