Edit File: ProductfeatureproperitiesResource.php
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\JsonResource; use App\Http\Resources\ProductfeatureproperitiesResource; class ProductfeatureproperitiesResource extends JsonResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request) { return [ 'id' => $this->properity->id, 'name' => $this->properity->name??'' ]; } }
Back to File Manager