phpvms/app/Http/Resources/Award.php
2018-01-28 21:19:35 +02:00

19 lines
349 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,
];
}
}