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