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

19 lines
370 B
PHP
Executable File

<?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,
'description' => $this->description,
'image' => $this->image,
];
}
}