PHP code example of konsulting / fractal-helpers
1. Go to this page and download the library: Download konsulting/fractal-helpers library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
konsulting / fractal-helpers example snippets
// BookTransformer.php
protected $availableIncludes = [
'author',
'characters'
];
public function ook) {
return $this->collection($book->characters, new CharacterTransformer);
}
// BookTransformer.php
protected $itemIncludes = [
'author' => AuthorTransformer::class,
];
protected $collectionIncludes = [
'characters' => CharacterTransformer::class,
];