27 lines
706 B
PHP
27 lines
706 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class AntibioticResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'name_en' => $this->name_en,
|
|
'weight' => $this->weight,
|
|
'organization_id' => $this->organization_id,
|
|
// 'lab' => LaboratoryResource::collection($this->lab),
|
|
'record_status_id' => $this->record_status_id
|
|
];
|
|
}
|
|
}
|