phpvms/app/Http/Resources/Setting.php
2018-03-19 20:50:40 -05:00

22 lines
499 B
PHP

<?php
namespace App\Http\Resources;
use Illuminate\Http\Resources\Json\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,
];
}
}