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

29 lines
674 B
PHP

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