phpvms/app/Http/Resources/Response.php

31 lines
683 B
PHP

<?php
namespace App\Http\Resources;
use App\Contracts\Unit;
use Illuminate\Http\Resources\Json\Resource;
/**
* Class Response
*/
class Response extends Resource
{
/**
* Iterate through the list of $fields and check if they're a "Unit"
* If they are, then add the response
*
* @param $response
* @param array $fields
*/
public function checkUnitFields(&$response, array $fields): void
{
foreach ($fields as $f) {
if ($this->{$f} instanceof Unit) {
$response[$f] = $this->{$f}->getResponseUnits();
} else {
$response[$f] = $this->{$f};
}
}
}
}