![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/syn.corals.io/Corals/modules/Syndicate/Transformers/ |
<?php namespace Corals\Modules\Syndicate\Transformers; use Corals\Foundation\Transformers\BaseTransformer; use Corals\Modules\Syndicate\Models\Pharmacy; use Throwable; class PharmacyTransformer extends BaseTransformer { public function __construct($extras = []) { $this->resource_url = config('syndicate.models.pharmacy.resource_url'); parent::__construct($extras); } /** * @param Pharmacy $pharmacy * @return array * @throws Throwable */ public function transform(Pharmacy $pharmacy) { $show_url = $pharmacy->getShowURL(); $transformedArray = [ 'id' => $pharmacy->id, 'name' => HtmlElement('a', ['href' => $show_url], $pharmacy->name), 'pharmacist' => $pharmacy->pharmacist->present('name'), 'phone' => $pharmacy->phone, 'district' => optional($pharmacy->district)->value ?? '-', 'city' => optional($pharmacy->city)->value ?? '-', 'opening_date' => format_date($pharmacy->opening_date), 'created_at' => format_date($pharmacy->created_at), 'updated_at' => format_date($pharmacy->updated_at), 'action' => $this->actions($pharmacy) ]; return parent::transformResponse($transformedArray); } }