mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 20:44:19 +00:00
27 lines
607 B
PHP
27 lines
607 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class ContactResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
// 'country_code' => $this->country->phone_code,
|
|
'reference' => $this->reference,
|
|
'phone' => $this->phone,
|
|
'email' => $this->email,
|
|
'wechat_id' => $this->wechat_id,
|
|
];
|
|
}
|
|
}
|