PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
ecommerce
/
src
/
Http
/
Resources
<?php namespace Botble\Ecommerce\Http\Resources; use Illuminate\Http\Request; use Illuminate\Http\Resources\Json\JsonResource; class CustomerResource extends JsonResource { /** * Transform the resource into an array. * * @param Request $request * * @return array */ public function toArray($request) { return [ 'id' => $this->id, 'name' => $this->name, 'email' => $this->email, 'phone' => $this->phone, 'avatar' => $this->avatar_url, 'dob' => $this->dob, 'gender' => $this->gender, 'description' => $this->description, ]; } }
[-] CustomerResource.php
[edit]
[-] ProductVariationResource.php
[edit]
[+]
..
[-] ProductCategoryResource.php
[edit]