phpvms/app/Http/Resources/Award.php

17 lines
324 B
PHP
Raw Normal View History

2018-01-29 03:19:35 +08:00
<?php
namespace App\Http\Resources;
class Award extends Response
2018-01-29 03:19:35 +08:00
{
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
];
}
}