Files
aso/Modules/Internal/Transformers/LinksehatPaymentResource.php
2023-04-06 05:03:38 +07:00

31 lines
801 B
PHP

<?php
namespace Modules\Internal\Transformers;
use Illuminate\Http\Resources\Json\JsonResource;
class LinksehatPaymentResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request
* @return array
*/
public function toArray($request)
{
return parent::toArray($request);
// return [
// // 'healthcare_name' => $this->healthCare->name ?? '',
// 'health_care' => $this->healthCare,
// 'nID' => $this->nID,
// 'sBookingCode' => $this->sBookingCode,
// 'doctor' => $this->doctor,
// 'user' => $this->user,
// 'payment_method' => $this->payment_method,
// 'detail' => $this->detail
// ];
}
}