1. Go to this page and download the library: Download laililmahfud/apdoc 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/ */
laililmahfud / apdoc example snippets
'path' => 'api-documentation',
'title' => 'ApDoc API',
'description' => 'ApDoc Api secification and documentation.',
/**
* @group User management
*
* APIs for managing users
*/
class UserController extends Controller
{
/**
* Create a user
*
* [Insert optional longer description of the API endpoint here.]
*
*/
public function createUser()
{
}
/**
* @group Account management
*
*/
public function changePassword()
{
}
}
/**
* @group Items
*/
class ItemController extends Controller
{
/**
* List items
*
* Get a list of items.
*
* @authenticated
* @requestBody multipart/form-data
* @responseFile responses/items.index.json
* @defaultParam
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//...
}
/**
* Store item
*
* Add a new item to the items collection.
*
* @bodyParam name string sponse
*/
public function store(Request $request)
{
//...
}
/**
* Get item
*
* Get item by it's unique ID.
*
* @pathParam item integer
/**
* @bodyParam title string ired The title of the post.
* @bodyParam type string The type of post to create. Defaults to 'textophonious'.
* @bodyParam author_id int the ID of the author
* @bodyParam thumbnail file This is