/
home
/
techb158
/
immovalet.com
/
platform
/
plugins
/
ecommerce
/
src
/
Http
/
Resources
/
/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Http/Resources
mkdir
upload
Name
Size
Mode
Actions
CustomerResource.php
735
0644
edit
dl
rm
ProductVariationResource.php
1785
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Http/Resources/CustomerResource.php
(735B)
<?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, ]; } }
Save
$this->id, 'name' => $this->name, 'email' => $this->email, 'phone' => $this->phone, 'avatar' => $this->avatar_url, 'dob' => $this->dob, 'gender' => $this->gender, 'description' => $this->description, ]; } }