Skip to content

Instantly share code, notes, and snippets.

@deleugpn
Created June 23, 2018 12:50
Show Gist options
  • Save deleugpn/6ee57e2bdb4e1179112b31fe88eaea0e to your computer and use it in GitHub Desktop.
Save deleugpn/6ee57e2bdb4e1179112b31fe88eaea0e to your computer and use it in GitHub Desktop.
<?php
namespace App\Modules\Books\Resources;
use Illuminate\Http\Resources\Json\Resource;
class BookResource extends Resource
{
public function toArray($request)
{
return [
'id' => $this->resource->id,
'title' => $this->resource->title,
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment