phpvms/app/Http/Resources/Award.php

19 lines
370 B
PHP
Raw Normal View History

2018-01-29 03:19:35 +08:00
<?php
namespace App\Http\Resources;
use Illuminate\Http\Resources\Json\Resource;
class Award extends Resource
{
public function toArray($request)
{
return [
'id' => $this->id,
'title' => $this->title,
2018-01-29 03:19:35 +08:00
'description' => $this->description,
'image' => $this->image,
2018-01-29 03:19:35 +08:00
];
}
}