phpvms/app/Http/Resources/Acars.php
Nabeel S 12848091a2
Laravel 9 Update (#1413)
Update to Laravel 9 and PHP 8+

Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
2022-03-14 11:45:18 -04:00

39 lines
961 B
PHP

<?php
namespace App\Http\Resources;
use App\Contracts\Resource;
use App\Support\Units\Distance;
use App\Support\Units\Fuel;
/**
* @mixin \App\Models\Acars
*/
class Acars extends Resource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
*
* @return array
*/
public function toArray($request)
{
$res = parent::toArray($request);
// Set these to the response units
$distance = !empty($res['distance']) ? $res['distance'] : 0;
$distance = Distance::make($distance, config('phpvms.internal_units.distance'));
$res['distance'] = $distance->getResponseUnits();
$fuel = !empty($res['fuel']) ? $res['fuel'] : 0;
$fuel = Fuel::make($fuel, config('phpvms.internal_units.fuel'));
$res['fuel'] = $fuel->getResponseUnits();
$res['pirep'] = Pirep::make($this->whenLoaded('pirep'));
return $res;
}
}