point-backend/app/Http/Resources/dashboard/ProjectResource.php
2024-04-04 15:00:24 +03:00

26 lines
562 B
PHP

<?php
namespace App\Http\Resources\dashboard;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
use Illuminate\Support\Facades\Config;
class ProjectResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return [
"id"=> $this->id,
'title' => $this->title,
'description' => $this->description,
'logo' => $this->logo ,
];
}
}