PHPackages                             teamtnt/sales-management - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. teamtnt/sales-management

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

teamtnt/sales-management
========================

A minimalistic approach to sales management

v1.1.57(1mo ago)0671MITPHPPHP ^8.0

Since Feb 8Pushed 1mo ago4 watchersCompare

[ Source](https://github.com/teamtnt/sales-management)[ Packagist](https://packagist.org/packages/teamtnt/sales-management)[ Docs](https://github.com/teamtnt/sales-management)[ RSS](/packages/teamtnt-sales-management/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (10)Dependencies (60)Versions (84)Used By (0)

A minimalistic approach to sales management
===========================================

[](#a-minimalistic-approach-to-sales-management)

[![Latest Version on Packagist](https://camo.githubusercontent.com/8a26e92343072e050b9cfb14d707b4270c956fbb58c433821bdda025f20530b9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7465616d746e742f73616c65732d6d616e6167656d656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/teamtnt/sales-management)[![GitHub Tests Action Status](https://camo.githubusercontent.com/97f272ac211890e03a101f1ccd58a1c5606a8c17d6b8405775a8a32a87e93e30/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7465616d746e742f73616c65732d6d616e6167656d656e742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/teamtnt/sales-management/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/b9f8e61aea9730aa3c72b89b03b9fe88320631780ac099b05761ae09e588b019/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7465616d746e742f73616c65732d6d616e6167656d656e742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/teamtnt/sales-management/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/9f106a0aafab9815731ae78beecad730376624b0c0ac50c8f2060d64da7def0b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7465616d746e742f73616c65732d6d616e6167656d656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/teamtnt/sales-management)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

Installation
------------

[](#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"
```

Local Development Setup
-----------------------

[](#local-development-setup)

To develop this package locally and see your changes immediately in a Laravel host application:

### 1. Symlink the PHP Package (Composer)

[](#1-symlink-the-php-package-composer)

In your host application's `composer.json` file:

1. Add the local path repository pointing to this package's directory: ```
    "repositories": [
        {
            "type": "path",
            "url": "../sales-management",
            "options": {
                "symlink": true
            }
        }
    ]
    ```
2. Update the package version requirement to target your active branch (e.g. `dev-main`): ```
    "require": {
        "teamtnt/sales-management": "dev-main"
    }
    ```
3. Run the update command to symlink the package:
    - **For local environments (Valet, Herd, Native PHP):**```
        composer update teamtnt/sales-management
        ```
    - **For Docker environments:**Run the composer update command *inside* the container to ensure the relative symlink resolves correctly within the container's virtualized filesystem: ```
        docker exec  composer update teamtnt/sales-management
        ```

### 2. Symlink the Public Assets (Vite)

[](#2-symlink-the-public-assets-vite)

This package compiles frontend assets into its own `public/sales-management` directory. To see JS/CSS changes immediately in the host app without repeatedly running `php artisan vendor:publish`:

- **For local environments (Valet, Herd, Native PHP):**From the host application's root directory, run: ```
    rm -rf public/sales-management
    ln -s ../vendor/teamtnt/sales-management/public/sales-management public/sales-management
    ```
- **For Docker environments:**Because Docker virtualization layers (like VirtioFS or gRPC FUSE) isolate mounts and restrict relative symlinks that traverse outside of the project volume, you should create an **absolute container-internal symlink** instead: ```
    docker exec  rm -rf /var/www//public/sales-management
    docker exec  ln -s /var/www/sales-management/public/sales-management /var/www//public/sales-management
    ```

### 3. Building &amp; Compiling Assets

[](#3-building--compiling-assets)

When editing JS/CSS files within the package:

1. Make sure npm dependencies are installed in the package directory: ```
    npm install
    ```
2. Run Vite build to compile changes: ```
    npm run build
    ```

Usage
-----

[](#usage)

```
$salesManagement = new Teamtnt\SalesManagement();
echo $salesManagement->echoPhrase('Hello, Teamtnt!');
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Nenad Ticaric](https://github.com/teamtnt)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

50

—

FairBetter than 95% of packages

Maintenance93

Actively maintained with recent releases

Popularity15

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~15 days

Recently: every ~1 days

Total

79

Last Release

34d ago

Major Versions

v0.9.9 → v1.0.02023-03-24

### Community

Maintainers

![](https://www.gravatar.com/avatar/6fc0f9546f5f7b8a91fa32ca0de9f2c590d00ec113c621783eeca82516bb006f?d=identicon)[nticaric](/maintainers/nticaric)

---

Top Contributors

[![nticaric](https://avatars.githubusercontent.com/u/824840?v=4)](https://github.com/nticaric "nticaric (182 commits)")[![TomePale](https://avatars.githubusercontent.com/u/9658088?v=4)](https://github.com/TomePale "TomePale (143 commits)")[![jbeslic](https://avatars.githubusercontent.com/u/14052054?v=4)](https://github.com/jbeslic "jbeslic (114 commits)")[![stokic](https://avatars.githubusercontent.com/u/2147162?v=4)](https://github.com/stokic "stokic (56 commits)")

---

Tags

laravelteamtntsales management

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/teamtnt-sales-management/health.svg)

```
[![Health](https://phpackages.com/badges/teamtnt-sales-management/health.svg)](https://phpackages.com/packages/teamtnt-sales-management)
```

###  Alternatives

[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k99.8M355](/packages/laravel-horizon)[laravel/sail

Docker files for running a basic Laravel application.

1.9k212.4M1.5k](/packages/laravel-sail)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.9M535](/packages/pimcore-pimcore)[illuminate/support

The Illuminate Support package.

583115.4M45.3k](/packages/illuminate-support)[statamic/cms

The Statamic CMS Core Package

4.9k3.8M1.2k](/packages/statamic-cms)[flarum/core

Delightfully simple forum software.

211.5M2.5k](/packages/flarum-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
