17 lines
324 B
PHP
Executable File
17 lines
324 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
class Award extends Response
|
|
{
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'title' => $this->title,
|
|
'description' => $this->description,
|
|
'image' => $this->image,
|
|
];
|
|
}
|
|
}
|