Install the package via composer:
composer require vertex-it/voiler
You can publish the config:
php artisan vendor:publish --tag=config
You can install tailwind:
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
You can install jquery:
npm install jquery jquery-cropper jquery-timepicker
You can install datatables:
npm install datatables.net-dt datatables.net-buttons-dt datatables.net-select-dt datatables.net-responsive-dt datatables.net-fixedheader-dt datatables.net-fixedcolumns-dt
You can publish the assets:
php artisan vendor:publish --tag=assets --force
You can publish the views:
php artisan vendor:publish --tag=views --force
Install the project in the same directory as the source project.
In docker-compose.yml
in app
service volumes
parameter add:
volumes:
- ../voiler:/var/www/voiler
In composer.json
add
"repositories": [
{
"type": "path",
"url": "../voiler"
}
]
Delete composer.lock
and vendor
and install composer dependencies again.
// Usage description here
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.