revosystems / mojito
There is no license information available for the latest version (11.0.2) of this package.
Stock management system
11.0.2
2024-10-29 11:30 UTC
Requires
- php: ^8.1
- illuminate/database: ^8.0|^9.0|^10.0
- revosystems/grog: ^9.0|^10.0|^11.0|^12.0
- dev-master
- 11.0.2
- 11.0.1
- 11.0.0
- 10.1.3
- 10.1.2
- 10.1.1
- 10.1.0
- 10.0.1
- 10.0.0
- 9.2.0
- 9.1.2
- 9.1.0
- 9.0.5
- 9.0.4
- 9.0.3
- 9.0.2
- 9.0.1
- 9.0.0
- 8.45
- 8.44.2
- 8.44.1
- 8.44
- 8.43
- 8.1
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0
- 1.8.6
- 1.8.5
- 1.8.4
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8
- 1.7.2
- 1.7.1
- 1.7
- 1.6.7
- 1.6.6
- 1.6.5
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6
- 1.5.16
- 1.5.15
- 1.5.14
- 1.5.13
- 1.5.12
- 1.5.11
- 1.5.10
- 1.5.9
- 1.5.8
- 1.5.7
- 1.5.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4
- 1.2.1
- 1.2
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1
- 1.0.24
- 1.0.23
- 1.0.22
- 1.0.21
- 1.0.20
- 1.0.19
- 1.0.18
- 1.0.17
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0
- dev-feature/allow-grog-12
- dev-bugfix/rev-17401
- dev-feature/rev-17243
- dev-hotfix/laravel-10-support
- dev-feature/rev-16283
- dev-readme-tailwind-basic-usage
- dev-feature/purchase-order-status-enum
- dev-laravel-10
- dev-feature/rev-13207-purchaseOrderContent-item-hasOneThrough-relationship
- dev-feature/rev-12430
- dev-hotfix/create-stock-movements-from-config
- dev-hotfix/automatic-po-with-packs
- dev-feature/automatic-po-for-warehouse
- dev-master-no-grog
- dev-master-php7
- dev-hotfix/php7-dont-require-grog
- dev-feature/refactor-warehouse-stocks
- dev-feature/eagerLoading
This package is auto-updated.
Last update: 2024-10-29 11:31:02 UTC
README
Basic usage
Tailwind CSS
To set up the Mojito Package in your project, you need to add the specified Tailwind CSS colors to the safelist in your tailwind.config.js file.
Here's how you can add the safelist in your tailwind.config.js file:
// All the colors are used for the PurchaseOrderStatus enum. safelist: [ 'text-blue-800', 'bg-blue-400/20', 'text-yellow-800', 'bg-yellow-400/20', 'text-green-800', 'bg-green-400/20', 'text-zinc-800', 'bg-zinc-400/20' ],
By adding these colors to the safelist, you are instructing Tailwind CSS to keep the classes that use these colors in the final CSS output. This ensures that the Mojito Package's colors are available for use in your project.
Additionally, make sure to compile the assets (npm run prod
) for the changes to take effect.