28 lines
598 B
PHP
28 lines
598 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 ,
|
|
'type' => $this->type,
|
|
|
|
];
|
|
}
|
|
}
|