PHP code example of ddiimmkkaass / lumen-api-generator
1. Go to this page and download the library: Download ddiimmkkaass/lumen-api-generator 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/ */
ddiimmkkaass / lumen-api-generator example snippets
namespace App\Api\Controllers;
use App\User;
use App\Api\Transformers\UserTransformer;
class UserController extends Controller
{
/**
* Eloquent model.
*
* @return \Illuminate\Database\Eloquent\Model
*/
protected function model()
{
return new User;
}
/**
* Transformer for the current model.
*
* @return \League\Fractal\TransformerAbstract
*/
protected function transformer()
{
return new UserTransformer;
}
}
namespace App\Api\Transformers;
use App\User;
use League\Fractal\TransformerAbstract;
class UserTransformer extends TransformerAbstract
{
/**
* Resource key.
*
* @var string
*/
protected $resourceKey = null;
/**
* Turn this item object into a generic array.
*
* @param $item
* @return array
*/
public function transform(User $item)
{
return [
'id' => (int)$item->id,
'created_at' => (string)$item->created_at,
'updated_at' => (string)$item->updated_at,
];
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.