legacy-docs
legacy-docs copied to clipboard
📄 The official documentation of AdonisJs
The `sync` method also accepts an optional callback (just as the `attach` method), but there wasn't any indicators of this possibility on the docs, hence, this PR. This adds a...
The sentence seems incomplete here > The Router is a combination of multiple classes can add custom properties/methods to all the classes using the macros or getters. https://docs.adonisjs.com/guides/routing
Sometimes the examples in the docs aren't easy to run due to missing implementation. A point in case would be https://adonisjs.com/docs/4.1/testing#_unit_tests Suppose a reader lands on this section but needs...
Took the code comments from the [AdonisJS HTTP Server](https://github.com/adonisjs/http-server/blob/bd3ccdd5578b1240c1503fb987052de95946a952/src/Cookie/Serializer/index.ts#L53-L54) to help clarify some of the documentation for future users.
Under detach in the documentation https://adonisjs.com/docs/4.0/relationships#_detach for using the detach method without an argument, it says "The `detach` method is the opposite of the `attach` method, and it removes the...
Didn't find the timeout method in the documentation https://github.com/adonisjs/core/issues/712#issuecomment-344226870
Hello guys, I would like to better understand this project and how it works and how I could help you in the development.
I had to go to [Form Submissions / Reading Form Data](https://preview.adonisjs.com/guides/http/form-submissions#reading-form-data) to see how to render Views from Controllers. It should probably be included in both View and Controller documentation.
Fixed a mistake on the `increment` and `decrement` query builder functions. See http://knexjs.org/#Builder-increment.
Based on my tests, using count() without defining a alias, will always result in a array in a key "count" inside, not count('*') nor count('id'), etc. I'm using PostgreSQL 12....