| Current Path : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Http/Resources/ |
| Current File : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Http/Resources/CustomerResource.php |
<?php
namespace App\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
*/
public function toArray($request): array
{
return [
"id" => $this->id,
"name" => $this->name,
"username" => $this->username,
"email" => $this->email,
"branch_id" => $this->branch_id,
"phone" => $this->phone === null ? '' : $this->phone,
"status" => $this->status,
"image" => $this->image,
"country_code" => $this->country_code,
"messages" => $this->messages->count(),
];
}
}