phpvms/app/Http/Resources/Setting.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

22 lines
482 B
PHP

<?php
namespace App\Http\Resources;
use App\Contracts\Resource;
class Setting extends Resource
{
public function toArray($request)
{
return [
'id' => $this->id,
'type' => $this->type,
'name' => $this->name,
'value' => $this->value,
'group' => $this->group,
'order' => $this->order,
'description' => $this->description,
];
}
}