PHPackages                             iceburgcrm/iceburgcrm - 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. [Framework](/categories/framework)
4. /
5. iceburgcrm/iceburgcrm

ActiveProject[Framework](/categories/framework)

iceburgcrm/iceburgcrm
=====================

Iceburg CRM is a metadata driven CRM that allows you to quickly prototype any CRM. The default CRM is based on a typical business CRM but the flexibility of dynamic modules, fields, subpanels allows prototyping of any number of different tyes of CRMs.

v3.6.5(1mo ago)227156↓100%43MITJavaScriptPHP ^8.1.0

Since Nov 26Pushed 1mo ago7 watchersCompare

[ Source](https://github.com/iceburgcrm/iceburgcrm)[ Packagist](https://packagist.org/packages/iceburgcrm/iceburgcrm)[ GitHub Sponsors](https://github.com/iceburgcrm)[ RSS](/packages/iceburgcrm-iceburgcrm/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (21)Versions (26)Used By (0)

[![](https://camo.githubusercontent.com/d213a24478ca5e0905e4991092292e4a7618bef1b3dd7cd9333cc931db5c1f10/68747470733a2f2f7777772e696365627572672e63612f696d616765732f696365627572672e706e67)](https://www.iceburg.ca)

Iceburg CRM
===========

[](#iceburg-crm)

### A Laravel CRM Builder

[](#a-laravel-crm-builder)

#### With optional AI Assist, AI Builder

[](#with-optional-ai-assist-ai-builder)

Screenshots:

[![](https://camo.githubusercontent.com/64722846bc750db69bcfeda1d8c4dc2bdb5cea152e0430b30da37af808ddeee5/68747470733a2f2f7777772e696365627572672e63612f696d616765732f73637265656e73686f74312e6a7067)](https://www.iceburg.ca/images/screenshot1.jpg)[![](https://camo.githubusercontent.com/4d2751e542d71aa2f6a53cd30834ddb3d02c376f615a80239cf88ec96713a6a4/68747470733a2f2f7777772e696365627572672e63612f696d616765732f73637265656e73686f74322e6a7067)](https://www.iceburg.ca/images/screenshot2.jpg)[![](https://camo.githubusercontent.com/4bf8a598f1a7a6b411cd9fbf3c1d56d085259f86c3450118f99f2c4d1b663609/68747470733a2f2f7777772e696365627572672e63612f696d616765732f73637265656e73686f74332e6a7067)](https://www.iceburg.ca/images/screenshot3.jpg)[![](https://camo.githubusercontent.com/59c424f2c8b98eb36da36820388c96d5500fce1da234d10577ccacb0e2321978/68747470733a2f2f7777772e696365627572672e63612f696d616765732f73637265656e73686f74342e6a7067)](https://www.iceburg.ca/images/screenshot4.jpg)[![](https://camo.githubusercontent.com/f71ba5c1a078862a6ca4c7e0348d10d4f1b6fa34dd5258a757fce1e086255996/68747470733a2f2f7777772e696365627572672e63612f696d616765732f73637265656e73686f74352e6a7067)](https://www.iceburg.ca/images/screenshot5.jpg)

[Project Home Page - iceburg.ca](https://www.iceburg.ca)

[Demo](https://demo.iceburg.ca)

### Default usernames and passwords

[](#default-usernames-and-passwords)

UsernamePasswordadminusersalesaccountingmarketing### Describe your CRM and let's AI create it.

[](#describe-your-crm-and-lets-ai-create-it)

About Iceburg CRM
-----------------

[](#about-iceburg-crm)

Iceburg CRM is a metadata driven CRM with AI abilities that allows you to quickly prototype any CRM. The default CRM is based on a typical business CRM but the flexibility of dynamic modules, fields, subpanels allows prototyping of any number of different tyes of CRMs.

Features
--------

[](#features)

- \[Metadata creations of modules, fields, relationships, subpanels, datalets, seeding\]
- \[Ability to Import/Export in 6 different formats (XLSX, CSV, TSV, ODS, XLS, HTML\]
- \[25 different input types, **Laravel** field validation, **Maska** field masking\]
- \[26 themes with light and dark themes available\]
- \[Module based Role permissions (read, write, import, export)\]
- \[Calendar, Audit logs, Vue3 Charts, Convertable modules, Related Fields (related to another module)\]
- \[Field Level Relationships, Module Level Relationships 2 way, 3 way, 4 way, ...\]
- \[Build-in API, Workflow\]
- \[150 Connectors with 5 Endpoints each\]

Created With
------------

[](#created-with)

Iceburg CRM is created with:

- [Vue 3](https://vuejs.org/) for the frontend
- [Laravel 10](https://laravel.com/) for the backend
- [Tailwinds](https://tailwindui.com/) with the DaisyUI plugin
- [Inertia](https://inertiajs.com/) for routing
- [heroicons](https://heroicons.com)

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

[](#installation)

### Quick Install

[](#quick-install)

```
composer create-project iceburgcrm/iceburgcrm iceburgcrm

// Default
php artisan iceburg:seed

// Convert Existing DB to CRM
php artisan iceburg:seed --type=adminpanel

// Use AI
php artisan iceburg:seed --type=ai --prompt="Create a stamp collecting crm"
```

### Ways to Install

[](#ways-to-install)

- **Default** - Install the default Classic IceburgCRM: 55 Modules, 282 Fields, 43 Relationships, 24 Subpanels, 5 Datalets

```
php artisan iceburg:create
```

- **AdminPanel** - Point to an existing Database and turn it into a CRM. Type is requires but additional parameters are optional. If not supplied will use existing connection details.

```
php artisan iceburg:create --type=adminpanel --connection_host=123.123.123.123 --connection_port=3306 --connection_database=databasename --connection_username=dbuser --connection_password=dbpassword --connection_charset=utf8mb4 --connection_collation=utf8mb4_unicode_ci
```

Example of a live wordpress database converted to a CRM. [Wordpress CRM](https://wordpress.iceburg.ca)
[Wordpress Website](https://wordpresssite.iceburg.ca)

- **Core** - Install only the core files. This will create a blank CRM template.

```
php artisan iceburg:create --type=core
```

- **Custom** - Add your own modules, field, relationships, subpanels and generate it.

```
php artisan iceburg:create --type=custom
```

- **AI** - Describe the CRM you want and let AI create it. Including the logo parameter will create an unique image for your login page. ChatGPT 3.5 is used as the default. Dalle-3 is used for image generation. Cost: 4 cents per crm with logo or a 1 penny without the logo.

```
php artisan iceburg:create --type=ai --prompt="Create a stamp collecting crm" logo="yes"
```

Each AI generation is different. Based on the prompt above here are three CRM's created: [Stamp Collectors CRM 1](https://postagestamps.iceburg.ca/)[Stamp Collectors CRM 2](https://postagestamps2.iceburg.ca/)[Stamp Collectors CRM 3](https://postagestamps3.iceburg.ca/)

*Note: Connection parameters, can be used with different types of installation.*

### Full Installation

[](#full-installation)

If you do not have a server available visit [digitalocean](https://www.digitalocean.com/?refcode=a52593511cc4) and get $200 dollars in free credit

If not installed, please install [composer](https://getcomposer.org/download/)

If not installed, please install [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm/)

```
composer create-project iceburgcrm/iceburgcrm iceburgcrm

or

git clone git@github.com:iceburgcrm/iceburgcrm.git

cd iceburgcrm
```

Edit your database environment variables

```
vim .env

DB_HOST=
DB_PORT=
DB_USERNAME=
DB_PASSWORD=
DB_DATABASE=
```

Open permissions on the storage and

```
sudo chown -R www-data:www-data /path/to/your/project/public
sudo chown -R www-data:www-data /path/to/your/project/storage

Deploy
```php
sudo chmod 775 storage -R
```

AI Assist (Optional)
--------------------

[](#ai-assist-optional)

AI Assist will try to determine values for your current module by using the name, description of the module and the field. It suggests for blank fields and provides a confirmation preview before you commit to saving.

```
// Add your OPENAI KEY AND ORG ID TO your environment file to enable AI Assist
// This will enable an AI ASSIST button in add or edit modules
// that will allow you to fill in any field with AI Assisted data

OPENAI_API_KEY=
OPENAI_ORGANIZATION=

```

API
---

[](#api)

```
Get Token
curl -X POST localhost:8000/api/login -H "Content-Type: application/json" -d '{"email": "admin@iceburg.ca", "password": "admin"}

Sample Return:
{"token":"2|16ajbNyxwDhBUvupqLCSQSJyFV5d0IQao7Bwm2ch3b6e331b"}

# 1. Get All CRM Modules
curl -X GET http://localhost:8000/api/crm -H "Authorization: Bearer YOUR_TOKEN_HERE"

Sample Return:
[{"id":1,"name":"ice_users","label":"Users","description":"Users","status":1,"faker_seed":0,"create_table":0,"view_order":0,"admin":0,"parent_id":0,"primary":1,"primary_field":"id","icon":"UserPlusIcon","module_group_id":6,"created_at":null,"updated_at":null},{"id":2,"name":"ice_roles","label":"Roles","description":"Roles","status":1,"faker_seed":0,"create_table":0,"view_order":1,"admin":0,"parent_id":0,"primary":1,"primary_field":"id","icon":"CircleStackIcon","module_group_id":6,"created_at":null,"updated_at":null},

# 2. Search CRM Data
curl -X GET http://localhost:8000/api/crm/search \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-H "Content-Type: application/json" \
-d '{"search_key": "value"}'

Use the format of the search which can be seen on the network tab after you've completed a search in the page called search_data.

This will take the users module for a name 'admin' and save the data to a text file.
curl -X GET http://localhost:8000/api/crm/search -H "Authorization: Bearer 4|DPGVyKHEXoZiWT4kBQYdzC0uzw9EpcR0JeDhBUx6d2744c5c" -H "Content-Type: application/json" -d '{
    "1__name": "admin",
    "1__email": "undefined",
    "1__role_id": "undefined",
    "page": 1,
    "per_page": 10,
    "search_order": "asc",
    "order_by": "",
    "search_type": "module",
    "module_id": 1,
    "text_search_type": "fuzzy"
}' > data.txt

Sample output
{"current_page":1,"data":[{"ice_users__name":"Admin","ice_users__profile_pic":"data:image\/jpg;base64,\/9j...

# 3. Get a Specific CRM Module
curl -X GET http://localhost:8000/api/crm/1 \
-H "Authorization: Bearer YOUR_TOKEN_HERE"

Sample output
{"id":1,"name":"ice_users","label":"Users","description":"Users","status":1,"faker_seed":0,"create_table":0,"view_order":0,"admin":0,"parent_id":0,"primary":1,"primary_field":"id","icon":"UserPlusIcon","module_group_id":6,"created_at":null,"updated_at":null}

# 4. Update or Add a CRM Record
curl -X PUT http://localhost:8000/api/crm/1 \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-H "Content-Type: application/json" \
-d '{"field1": "new_value1", "field2": "new_value2"}'

To update include the record id
curl -X PUT http://localhost:8000/api/crm/9 \
-H "Authorization: Bearer 2|qXONV6OYboLruwcdBP3mL55XsEftujd5vogQ5EI9ebb51884" \
-H "Content-Type: application/json" \
-d '{"record_id": 1, "9__name": "Jacobs Ltd 22test"}'

Output
ID record saved

To Add a new record do not include a record id
curl -X PUT http://localhost:8000/api/crm/9 -H "Authorization: Bearer 2|qXONV6OYboLruwcdBP3mL55XsEftujd5vogQ5EI9ebb51884" -H "Content-Type: application/json" -d '{"9__name": "Jacobs Ltd test2"}'

Output
ID of new record

# 5. Delete a Record in a CRM Module
curl -X DELETE http://localhost:8000/api/crm/1/["module" or "relationship"] \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-H "Content-Type: application/json" \
-d '{"record_ids": [1, 2, 3]}'

curl -X DELETE http://localhost:8000/api/crm/2/module -H "Authorization: Bearer 2|16ajbNyxwDhBUvupqLCSQSJyFV5d0IQao7Bwm2ch3b6e331b" -H "Content-Type: application/json" -d '{"record_ids": [1, 2, 3]}' > a.txt

```

Relationships
-------------

[](#relationships)

### Field Level Relationships

[](#field-level-relationships)

IceburgCRM supports field level relationships. A field level relationship could be a state field in an accounts module. When added or searching you would select the value from the dropdown.

In the database, the ID of the related module and field is stored. When you export module or relationship data IceburgCRM substitutes the ids for the value in the related module. When you import the reverse process happens. For example: If you had a related State field and had the Alabama saved. In the database you would see 1 in the accounts tables record. In the ice\_fields you would see that this field is a related type pointing to module with the id 17 (States module id is 17) and field id 2 (2nd field is the value field). When you export by default you will be Alabama and when you import Alabama is replaced with 1 again.

### Module Level Relationships

[](#module-level-relationships)

IceburgCRM supports Unlimited relationships between modules.

A typical CRM has a two way relationship between two modules. For example Accounts have many contacts and contacts can have many accounts.

IceburgCRM allows you to create relationships between 2, 3, 4 or more modules.

Why would you need a relationship between more than 2 modules? Let's say you wanted to have a subpanel that stored when a contract was signed, who signed, what location. A typical CRM will duplicate data or create new fields (that sit empty for all of the other records) or find some awkward method to force the data into a two way relationship.

IceburgCRM allows you to relate a Contract module, Account module, Contact module, City module, State module, Country module without having to add a related field or worse a free text field.

You can have multiple relationships and use them to create multiple subpanels for modules. For example you may want an Account &amp; Contact subpanel but you may also want an Account Contact Opportunity subpanel.

You would use a relationship for a subpanel and then select the fields you want from any module.

A contract module could have a relationship to an account, a contact, a location

### Themes

[](#themes)

Out of the box these themes are available. For more information or to try different themes visit ()

```
themes: [
"light",
"dark",
"cupcake",
"bumblebee",
"emerald",
"corporate",
"synthwave",
"retro",
"cyberpunk",
"valentine",
"halloween",
"garden",
"forest",
"aqua",
"lofi",
"pastel",
"fantasy",
"wireframe",
"black",
"luxury",
"dracula",
"cmyk",
"autumn",
"business",
"acid",
"lemonade",
"night",
"coffee",
"winter",
"dim",
"nord",
"sunset"],

```

Field Types
-----------

[](#field-types)

You can customize and add your own field types with their own special properties. Out of the box IceburgCRM has these:

```
tel
currency
checkbox
password
image
video
audio
file
number
email
url
zip
date
related
address
textarea
color
radio
text

```

*Try the Color field type. It will present a color picker.*

Calender
--------

[](#calender)

Fully customizable including colors and event hooks. You can select, day, week or month for the calendar view. The meetings module holds the data that powers the calendar. Allows multiple appointments at the same time. Click on an event to generate a popup.

Datalets
--------

[](#datalets)

Datalets are frontpage widgets. They can take the form of a graph, table, or video or anything. In the default IceburgCRM we provide a number of different graphs. In the AI generated CRMs we provide information base datalets.

Adding your own is easy. Add the datalet to the datalets table, add your new data function in the backend and create your vue template.

Workflow - Confortable Modules
------------------------------

[](#workflow---confortable-modules)

You can setup a workflow between modules. A stage box will appear in the module detail screen showing you at what stage this record is in the workflow. It also allows you to select other records in the workflow to examine what happened previously or later in the chain.

There a 5 module workflow setup in the default IceburgCRM. You can modify the workflow in the seeding files or in the workflow table.

Change these records in the ModuleSeeker file:

```
        ModuleConvertable::insert([
        'primary_module_id' => Module::where('name', 'leads')->first()->id,
        'module_id' => Module::where('name', 'contacts')->first()->id,
        'level' => 1,
        ]);

        ModuleConvertable::insert([
            'primary_module_id' => Module::where('name', 'contacts')->first()->id,
            'module_id' => Module::where('name', 'accounts')->first()->id,
            'level' => 2,
        ]);

        ModuleConvertable::insert([
            'primary_module_id' => Module::where('name', 'accounts')->first()->id,
            'module_id' => Module::where('name', 'quotes')->first()->id,
            'level' => 3,
        ]);

        ModuleConvertable::insert([
            'primary_module_id' => Module::where('name', 'quotes')->first()->id,
            'module_id' => Module::where('name', 'opportunities')->first()->id,
            'level' => 4,
        ]);

        ModuleConvertable::insert([
            'primary_module_id' => Module::where('name', 'opportunities')->first()->id,
            'module_id' => Module::where('name', 'contracts')->first()->id,
            'level' => 5,
        ]);

        ModuleConvertable::insert([
            'primary_module_id' => Module::where('name', 'contracts')->first()->id,
            'module_id' => 0,
            'level' => 6,
        ]);

```

Roles and Permission
--------------------

[](#roles-and-permission)

IceburgCRM provides permissions by role and by module. And allows you to set read, write, export import permissions.

Import / Export
---------------

[](#import--export)

You have the ability to Import/Export in 6 different formats (XLSX, CSV, TSV, ODS, XLS, HTML\]. Word is also available to be used but requires a system specific driver so it has been left out of the default options.

Custom Seeding
--------------

[](#custom-seeding)

### Files explained

[](#files-explained)

These files will be run in this sequence

#### DatabaseSeeder

[](#databaseseeder)

A database seeder file calls the remaining seeder files in sequence. These must be run in sequence and data generated in the previous step may be required in the next step.

#### ModuleSeeder

[](#moduleseeder)

This file creates the module records, module groups records and the module\_convertable records (workflow)

#### FieldSeeder

[](#fieldseeder)

This file creates all of the fields and relates them to modules

#### RelationshipSeeder

[](#relationshipseeder)

This file seeds the relationships between modules

#### GenerateSeeder

[](#generateseeder)

This file generates the default data for the modules. It also adds the datalets, roles and permissions and any sample media.

#### ModuleSubpanelSeeder

[](#modulesubpanelseeder)

This file generates the subpanel data. It needs to be run last.

Default Iceburg CRM
-------------------

[](#default-iceburg-crm)

### Number of Modules: 55

[](#number-of-modules-55)

### Primary Modules: 14

[](#primary-modules-14)

- Accounts
- Contacts
- Contracts
- Leads
- Opportunities
- Lineitems
- Products
- Campaigns
- Cases
- Documents
- Notes
- Projects
- Groups
- Quotes

### Number of Fields: 282

[](#number-of-fields-282)

### Number of Relationships: 43

[](#number-of-relationships-43)

### Number of Subpanels: 24

[](#number-of-subpanels-24)

### 5 Datalets

[](#5-datalets)

- \[pie chart\] Total Sales
- \[line graph\] New Leads / Contacts / Accounts over 7 days
- \[pie chart\] New Opportunities / Contracts / Quotes
- \[bar graph\] Meeting (Today, 7 Days, 30 Days)
- \[pie chart\] Orders this month

### Admin

[](#admin)

- Settings
- Permissions
- Modules, Fields, Subpanels, Users, Datalet editing

### Roles

[](#roles)

- Accounting
- Admin
- HR
- Marketing
- Sales
- Support
- User

hosted.iceburg.ca
-----------------

[](#hostediceburgca)

### Don't want to self install? Create CRMs Online for free

[](#dont-want-to-self-install--create-crms-online-for-free)

- Describe your CRM and build it with AI
- Select from our premade CRM templates
- Make any Database into a CRM

[hosted.iceburgcrm.ca](https://hosted.iceburg.ca)

Templates
---------

[](#templates)

### Classic CRM

[](#classic-crm)

[![Classic CRM Icon](https://camo.githubusercontent.com/e57c2e5e53eba3e7f73f48e5fe38a2ad2bacfb72bff9e30256bb4a2eaa632417/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f636c61737369632e6a70673f72616e643d3132333436)](https://camo.githubusercontent.com/e57c2e5e53eba3e7f73f48e5fe38a2ad2bacfb72bff9e30256bb4a2eaa632417/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f636c61737369632e6a70673f72616e643d3132333436)

\*\*Classic CRM. Accounts, Contacts, Contracts, LineItems, etc.\*\* \[Preview\]() ### Rare Books CRM

[](#rare-books-crm)

[![Rare Books CRM Icon](https://camo.githubusercontent.com/836adb89f6c0e119451d8d76009fe8570c81a2411ea52d4644a57b5bfd7e40dd/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f72617265626f6f6b732e6a70673f72616e643d3132333436)](https://camo.githubusercontent.com/836adb89f6c0e119451d8d76009fe8570c81a2411ea52d4644a57b5bfd7e40dd/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f72617265626f6f6b732e6a70673f72616e643d3132333436)

\*\*A platform for sneaker enthusiasts to catalog their collections, track market values, manage trades or sales, and connect with other collectors.\*\* \[Preview\]() ### Wine Connoisseurs CRM

[](#wine-connoisseurs-crm)

[![Wine CRM Icon](https://camo.githubusercontent.com/351ad7f977fe21292b8df595aab3e37d7ea748a6d3ed61efc736ed1f2dab2a6d/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f77696e652e6a70673f72616e643d3132333436)](https://camo.githubusercontent.com/351ad7f977fe21292b8df595aab3e37d7ea748a6d3ed61efc736ed1f2dab2a6d/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f77696e652e6a70673f72616e643d3132333436)

 \*\*For wine enthusiasts and sellers, offering cellar management, tasting notes, vintage tracking, and a community feature for sharing recommendations and organizing tastings.\*\* \[Preview\]() ### Fitness Studio CRM

[](#fitness-studio-crm)

[![Fitness CRM Icon](https://camo.githubusercontent.com/88923804e05ef4431be738b0667feb8b1793334efc34ca89c845b76c49be4329/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f6669746e6573732e6a70673f72616e643d3132333436)](https://camo.githubusercontent.com/88923804e05ef4431be738b0667feb8b1793334efc34ca89c845b76c49be4329/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f6669746e6573732e6a70673f72616e643d3132333436)

 \*\*Tailored for small to medium fitness studios, featuring membership management, class scheduling, fitness progress tracking for members, and integration with wearable tech for health data.\*\* \[Preview\]() ### Professional Networking CRM

[](#professional-networking-crm)

[![Networking CRM Icon](https://camo.githubusercontent.com/3ac5121ac9c2f1c3d39abb4f226468ab7887c5809f978c03a48e3bde71aee36f/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f6e6574776f726b696e672e6a70673f72616e643d3132333436)](https://camo.githubusercontent.com/3ac5121ac9c2f1c3d39abb4f226468ab7887c5809f978c03a48e3bde71aee36f/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f6e6574776f726b696e672e6a70673f72616e643d3132333436)

 \*\*A niche CRM for professional networking organizations, offering event planning, member engagement tracking, mentorship program management, and job boards.\*\* \[Preview\]() ### Crafting Supplies CRM

[](#crafting-supplies-crm)

[![Crafting Supplies CRM Icon](https://camo.githubusercontent.com/7504af8abce69715911eb46949ec8606bdeeb2eff3ccdca8f2149111b70d29b5/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f6372616674696e672e6a70673f72616e643d3132333436)](https://camo.githubusercontent.com/7504af8abce69715911eb46949ec8606bdeeb2eff3ccdca8f2149111b70d29b5/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f6372616674696e672e6a70673f72616e643d3132333436)

 \*\*For retailers and enthusiasts of crafting, offering inventory management, project tracking, supplier databases, and community features for sharing project ideas and tutorials.\*\* \[Preview\]() ### Gourmet Coffee Enthusiasts CRM

[](#gourmet-coffee-enthusiasts-crm)

[![Gourmet Coffee CRM Icon](https://camo.githubusercontent.com/9a9c8871252d0118bcfa4483a5cddfdc1f8b09011cb7e7c13ba3dcd76adc9c9c/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f636f666665652e6a70673f72616e643d3132333436)](https://camo.githubusercontent.com/9a9c8871252d0118bcfa4483a5cddfdc1f8b09011cb7e7c13ba3dcd76adc9c9c/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f636f666665652e6a70673f72616e643d3132333436)

 \*\*A platform for coffee lovers to track their favorite beans, roasts, brewing methods, and café experiences, including a marketplace for specialty beans and equipment.\*\* \[Preview\]() ### BeeKeeping CRM

[](#beekeeping-crm)

[![BeeKeeping CRM Icon](https://camo.githubusercontent.com/7acdb1ed6d36dab691210aa269a0c4b8eb687dc0603ee24fafbfe5eecd74b7a0/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f6265656b656570696e672e6a70673f72616e643d3132333436)](https://camo.githubusercontent.com/7acdb1ed6d36dab691210aa269a0c4b8eb687dc0603ee24fafbfe5eecd74b7a0/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f6265656b656570696e672e6a70673f72616e643d3132333436)

 \*\*For beekeepers to track hive health, manage honey production records, schedule maintenance, and engage with local and online beekeeping communities.\*\* \[Preview\]() ### Wordpress CRM

[](#wordpress-crm)

[![Wordpress CRM Icon](https://camo.githubusercontent.com/969956f1f054c5f2ee2c0c5782375c6d8aada5f9bfc6191fce4fbd15247b5916/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f776f726470726573732e6a70673f72616e643d3132333436)](https://camo.githubusercontent.com/969956f1f054c5f2ee2c0c5782375c6d8aada5f9bfc6191fce4fbd15247b5916/68747470733a2f2f64656d6f2e696365627572672e63612f696d616765732f776f726470726573732e6a70673f72616e643d3132333436)

\*\*This is a premade instance of a wordpress database with iceburgcrm. Once created, download and point your wordpress files.\*\* Changing the data in the CRM will change the wordpress website. \[CRM Preview\]() \[Wordpress Website\]() Star History
------------

[](#star-history)

[![Star History Chart](https://camo.githubusercontent.com/f494c20592975e65460a13b4b758b145ae3a0682e4aa87152d715d7778e473db/68747470733a2f2f6170692e737461722d686973746f72792e636f6d2f7376673f7265706f733d6963656275726763726d2f6963656275726763726d26747970653d44617465)](https://star-history.com/#iceburgcrm/iceburgcrm&Date)

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

[](#security-vulnerabilities)

If you discover a security vulnerability within Iceburg CRM, please send an e-mail to .

License
-------

[](#license)

The Iceburg CRM is open-sourced software licensed under the [AGPL](https://www.gnu.org/licenses/agpl-3.0.en.html)

Other Frameworks
----------------

[](#other-frameworks)

A [Python Django Version](https://github.com/iceburgcrm/iceburgcrmpython) is available

###  Health Score

55

—

FairBetter than 98% of packages

Maintenance89

Actively maintained with recent releases

Popularity31

Limited adoption so far

Community23

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 53.4% of commits — single point of failure

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 ~55 days

Recently: every ~147 days

Total

23

Last Release

54d ago

Major Versions

v1.9.5 → v2.0.52023-03-07

v2.9.5 → v3.0.52024-04-11

PHP version history (2 changes)1.0.0PHP ^8.0.2

v2.0.5PHP ^8.1.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/e2b50095c95f5e3a4df4bd9c4f1d8266715afabe27fb454e8d3f3715137b3d40?d=identicon)[iceburgcrm](/maintainers/iceburgcrm)

![](https://www.gravatar.com/avatar/d2c7cc23e9102f385fd15a15a2dc36e07ad1b15713805e7ee0baff58faece343?d=identicon)[softwaredeveloperca](/maintainers/softwaredeveloperca)

---

Top Contributors

[![softwaredeveloperca](https://avatars.githubusercontent.com/u/4053955?v=4)](https://github.com/softwaredeveloperca "softwaredeveloperca (62 commits)")[![iceburgcrm](https://avatars.githubusercontent.com/u/118024971?v=4)](https://github.com/iceburgcrm "iceburgcrm (46 commits)")[![htmujahid](https://avatars.githubusercontent.com/u/58030954?v=4)](https://github.com/htmujahid "htmujahid (4 commits)")[![hide-me](https://avatars.githubusercontent.com/u/45032974?v=4)](https://github.com/hide-me "hide-me (2 commits)")[![gnovaro](https://avatars.githubusercontent.com/u/270990?v=4)](https://github.com/gnovaro "gnovaro (1 commits)")[![kgsint](https://avatars.githubusercontent.com/u/105710577?v=4)](https://github.com/kgsint "kgsint (1 commits)")

---

Tags

aicrmdaisyuiinertiajslaravellaravel-applicationlaravel8llmmetadataphpsuitecrmtailwindcssvuevue3frameworklaravelaimetadatacmsinertiacrmvuellmDaisyUIvue3iceburgiceburg crmcomposition apitailwinds

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/iceburgcrm-iceburgcrm/health.svg)

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

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[krayin/laravel-crm

Krayin CRM

22.0k32.8k1](/packages/krayin-laravel-crm)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[lavalite/cms

Lavalite - The Laravel CMS.

2.9k56.3k](/packages/lavalite-cms)

PHPackages © 2026

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