You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have generated a doc using this package. And it is working fine. But Whoever is reading the doc is confused by {Object} text. As the resource route of accounts is showing APIs like GET api/accounts/{account}. Here reader having doubt to replace the account id in place of {account}. Is there any way to customize this.
Thanks in Advance.
The text was updated successfully, but these errors were encountered:
just before corresponding controller method or even your validation form request. laravel-apidoc-generator would detect that param and add that name to generated documents.
It would even be better add some description or example too.
/** * Show Account * * @urlParam account required Some description here. Example:brnrajoriya */publicfunctionshow(Account$account)
{
// ...
}
I have generated a doc using this package. And it is working fine. But Whoever is reading the doc is confused by {Object} text. As the resource route of accounts is showing APIs like GET api/accounts/{account}. Here reader having doubt to replace the account id in place of {account}. Is there any way to customize this.
Thanks in Advance.
The text was updated successfully, but these errors were encountered: