66 lines
2.6 KiB
PHP
Executable File
66 lines
2.6 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Modules\Linksehat\Transformers;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Route;
|
|
|
|
class PractitionerRoleToDoctorResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
// $organization = [
|
|
// 'id' => $this->organization->id,
|
|
// 'name' => $this->organization->name,
|
|
// 'code' => $this->organization->code,
|
|
// 'description' => $this->organization->description,
|
|
// 'address' => $this->organization->currentAddress->text ?? null,
|
|
// 'lat' => $this->organization->currentAddress->lat ?? null,
|
|
// 'lng' => $this->organization->currentAddress->lng ?? null,
|
|
// 'distance' => '200 m',
|
|
// 'city_name' => 'Kota Tangerang',
|
|
// ];
|
|
$organization = HospitalResource::make($this->organization);
|
|
|
|
$speciality = $this->speciality ? [
|
|
'id' => $this->speciality->id ?? null,
|
|
'name' => $this->speciality->name ?? null,
|
|
'code' => $this->speciality->code ?? null,
|
|
] : null;
|
|
|
|
return [
|
|
'id' => $this->practitioner->id,
|
|
'organization_id' => $this->organization_id,
|
|
'full_name' => $this->practitioner->person->full_name,
|
|
'name_prefix' => $this->practitioner->person->name_prefix,
|
|
'name' => $this->practitioner->person->name,
|
|
'name_suffix' => $this->practitioner->person->name_suffix,
|
|
'gender' => $this->practitioner->person->gender,
|
|
// 'speciality_name' => !empty($this->speciality->name ?? null) ? 'Spesialis '. $this->speciality->name : 'Spesialis Empty',
|
|
'is_online' => Route::getCurrentRoute()->action['as'] == 'doctors.online',
|
|
'is_insurance_covered' => (rand(0,1) == 1),
|
|
'price_range' => 'Rp 100.000 - Rp 350.000',
|
|
'price_start' => '100000',
|
|
'price_end' => '350000',
|
|
'currency' => 'IDR',
|
|
'avatar_url' => asset('images/default-doctor-avatar.png'),
|
|
'hospital' => $organization,
|
|
'speciality' => $speciality,
|
|
'rating' => rand(88, 100),
|
|
'length_of_work_year' => rand(1, 10),
|
|
|
|
'is_chat_available' => $this->is_chat_available,
|
|
'is_video_available' => $this->is_video_available,
|
|
'is_walkin_available' => $this->is_walkin_available,
|
|
'is_instant_chat_available' => $this->is_instant_chat_available,
|
|
];
|
|
return parent::toArray($request);
|
|
}
|
|
}
|