teamtnt / sales-management
A minimalistic approach to sales management
Requires
- php: ^8.0
- illuminate/contracts: ^9.||^10.0
- maatwebsite/excel: ^3.1
- nesbot/carbon: ^2.62.1
- symfony/workflow: ^6.0
- symfony/yaml: ^6.0
- yajra/laravel-datatables: ^9.0||^10.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^6.0
- orchestra/testbench: ^7.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpunit/phpunit: ^9.5
- dev-main
- v1.1.43
- v1.1.42
- v1.1.41
- v1.1.40
- v1.1.39
- v1.1.38
- v1.1.37
- v1.1.36
- v1.1.35
- v1.1.34
- v1.1.33
- v1.1.32
- v1.1.31
- v1.1.30
- v1.1.29
- v1.1.28
- v1.1.27
- v1.1.26
- v1.1.25
- v1.1.24
- v1.1.23
- v1.1.22
- v1.1.21
- v1.1.20
- v1.1.19
- v1.1.18
- v1.1.17
- v1.1.16
- v1.1.15
- v1.1.14
- v1.1.13
- v1.1.12
- v1.1.11
- v1.1.10
- v1.1.9
- v1.1.8
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.9.9
- v0.9.8
- v0.9.7
- v0.9.6
- v0.9.5
- v0.9.4
- v0.9.3
- v0.9.2
- v0.9.1
- v0.9.0
- dev-campaign-vue
- dev-wait
- dev-dashboard
This package is auto-updated.
Last update: 2024-10-28 09:08:59 UTC
README
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
Installation
You can install the package via composer:
composer require teamtnt/sales-management
You can publish and run the migrations with:
php artisan vendor:publish --tag="sales-management-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="sales-management-config"
This is the contents of the published config file:
return [
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="sales-management-views"
Publishing assets
php artisan vendor:publish --tag="sales-management-assets"
Building Assets
We use Vite to build assets. First install all dependencies.
npm install
If there is no public folder in project root run first production build which will build needed folders:
npm run build
Development build:
npm run dev
For local development to have hot reloading create a symlink
ln -s ../vendor/teamtnt/sales-management/public/sales-management public/sales-management
Add to composer.json
"repositories": [{
"type": "path",
"url": "../sales-management"
}],
"require": {
"teamtnt/sales-management": "@dev"
}
Usage
$salesManagement = new Teamtnt\SalesManagement(); echo $salesManagement->echoPhrase('Hello, Teamtnt!');
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.