phpvms/app/Http/Resources/Rank.php
Nabeel S 9e5386264f
SimBrief integration #405 (#635)
* SimBrief integration #405

* Add briefing as API response; add acars_xml field #405
2020-03-23 09:31:35 -04:00

24 lines
428 B
PHP

<?php
namespace App\Http\Resources;
use App\Contracts\Resource;
class Rank extends Resource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
*
* @return array
*/
public function toArray($request)
{
return [
'name' => $this->name,
'subfleets' => Subfleet::collection($this->subfleets),
];
}
}