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