25 lines
583 B
PHP
25 lines
583 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources\StaticInfo;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class StaticInfoResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
"id"=> $this->id,
|
|
"key"=> $this->key,
|
|
"value"=> $this->value,
|
|
"value_type"=> $this->value_type
|
|
];
|
|
}
|
|
}
|