33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Beike\Admin\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class CustomerResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
$data = [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'email' => $this->email,
|
|
'status' => $this->status,
|
|
'created_at' => time_format($this->created_at),
|
|
'avatar' => image_resize($this->avatar),
|
|
'from' => $this->from,
|
|
'customer_group_name' => $this->customerGroup->description->name ?? '',
|
|
'edit' => admin_route('customers.edit', $this->id),
|
|
'delete' => admin_route('customers.destroy', $this->id),
|
|
];
|
|
|
|
return $data;
|
|
}
|
|
}
|