33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Resources\SI;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
class SttMedicalHistoryResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'fullname' => $this->getFullNameAttribute(),
|
|
'daterecipient' => Carbon::parse($this->daterecipient)->format('d.m.Y'),
|
|
'dateextract' => Carbon::parse($this->dateextract)->format('d.m.Y'),
|
|
'card_num' => $this->archiveInfo->num ?? null,
|
|
'status' => $this->archiveInfo->status ?? null,
|
|
'datearhiv' => Carbon::parse($this->datearhiv)->format('d.m.Y'),
|
|
'statgod' => $this->statgod,
|
|
'enp' => $this->enp,
|
|
'medcardnum' => $this->medcardnum,
|
|
'dr' => Carbon::parse($this->dr)->format('d.m.Y'),
|
|
];
|
|
}
|
|
}
|