36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Sarga\API\Http\Resources\Customer;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Webkul\RestApi\Http\Resources\V1\Admin\Customer\CustomerGroupResource;
|
|
|
|
class CustomerResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'email' => $this->email,
|
|
'name' => $this->name,
|
|
'first_name' => $this->first_name,
|
|
'last_name' => $this->last_name,
|
|
'gender' => $this->gender,
|
|
'date_of_birth' => $this->date_of_birth,
|
|
'phone' => $this->phone,
|
|
'status' => $this->status,
|
|
'group' => $this->when($this->customer_group_id, new CustomerGroupResource($this->group)),
|
|
'notes' => $this->notes,
|
|
'created_at' => $this->created_at,
|
|
'updated_at' => $this->updated_at,
|
|
'wishlist' => $this->wishlist_items()->count(),
|
|
'orders' => $this->all_orders()->count()
|
|
];
|
|
}
|
|
} |