19 lines
481 B
PHP
19 lines
481 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources\EmergencyContacts;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class EmergencyContactStudentResource extends JsonResource
|
|
{
|
|
public function toArray($request): array
|
|
{
|
|
return [
|
|
'id' => (int) ($this['id'] ?? 0),
|
|
'firstname' => (string) ($this['firstname'] ?? ''),
|
|
'lastname' => (string) ($this['lastname'] ?? ''),
|
|
'school_id' => $this['school_id'] ?? null,
|
|
];
|
|
}
|
|
}
|