123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Http\Resources\API;
- use Illuminate\Http\Request;
- use Illuminate\Http\Resources\Json\JsonResource;
- class ProjectSimpleResource 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,
- 'display_id'=>$this->display_id,
- 'begin' => $this->begin,
- 'end' => $this->end,
- 'asset'=> $this->when($this->assets->isNotEmpty(),function (){
- return $this->assets->map(function ($asset){
- return new SimpleAssetResource($asset);
- })->all();
- }),
- ];
- }
- }
|