Generic types
Generic types allows you to reduce code duplication. For example, if all your index
endpoints return paginated responses it wouldn't be productive to write again and again the same class for each of your models.
Hopefully we can leverage mixins to avoid this.
Examples
Lucid Paginated response
In the following example we will create a mixin to create schemas for Lucid pagination.
Meta schema
First we will need to create the schema for the meta
property of our PaginatedResponse.
Mixin
We can now create a mixin that will have the properties data
and meta
.
Usage
You can now use the mixin in your controllers and simply pass the User
model as a parameter.