condoedge / utils
Utils helpers module to your kompo application
v0.2.12
2025-06-04 17:03 UTC
Requires
- php: ^8.0
- kompo/kompo: *
- laravel/framework: >=5.6.0
Requires (Dev)
- dev-main
- v0.2.12
- v0.2.11
- v0.2.10
- v0.2.9
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.43
- v0.1.42
- v0.1.41
- v0.1.40
- v0.1.39
- v0.1.38
- v0.1.37
- v0.1.36
- v0.1.35
- v0.1.34
- v0.1.32
- v0.1.31
- v0.1.30
- v0.1.29
- v0.1.27
- v0.1.26
- v0.1.25
- v0.1.24
- v0.1.23
- v0.1.22
- v0.1.21
- v0.1.20
- v0.1.19
- v0.1.18
- v0.1.17
- v0.1.16
- v0.1.15
- v0.1.14
- v0.1.13
- v0.1.12
- v0.1.11
- v0.1.10
- v0.1.9
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.0.21
- v0.0.19
- v0.0.18
- v0.0.17
- v0.0.16
- v0.0.15
- v0.0.14
- v0.0.13
- v0.0.12
- v0.0.11
- v0.0.10
- v0.0.9
- v0.0.8
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.2
- v0.0.1
This package is auto-updated.
Last update: 2025-06-04 17:03:24 UTC
README
Install and configuration steps
Use composer
composer require "condoedge/utils"
Migrate database
php artisan migrate
Add HasUserSettings trait
In your User model, add the HasUserSettings
trait:
use CondoEdge\Utils\Traits\HasUserSettings; class User extends Authenticatable { use HasUserSettings; // Your user model code... }
Publish config file
php artisan vendor:publish --provider="CondoEdge\Utils\UtilsServiceProvider" --tag=kompo-utils-config
Publish icons
php artisan vendor:publish --provider="CondoEdge\Utils\UtilsServiceProvider" --tag=kompo-kompo-utils-icons
Publish scripts
php artisan vendor:publish --provider="CondoEdge\Utils\UtilsServiceProvider" --tag=kompo-utils-assets
Load styles
// In you main scss file @use "../../vendor/condoedge/utils/resources/sass/kompo-utils";
Install intro.js
npm install intro.js --save
Load scripts
// In your main js file import utils from '../../vendor/condoedge/utils/resources/js/utils'; window.utils = utils;
IntroJS Animations
More explanations soon. For now just a minor clarification to set the image tooltip for IntroJS animations.
$introjs-image-tooltip: url('../images/introjs/introjs-image-tooltip.png');