PHPackages                             laravel\_crm/capsulecrm - 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. [API Development](/categories/api)
4. /
5. laravel\_crm/capsulecrm

ActiveLibrary[API Development](/categories/api)

laravel\_crm/capsulecrm
=======================

Laravel Package for capsule CRM integration

1.0.1(8y ago)43105MITPHPPHP &gt;=5.4.0

Since Apr 11Pushed 3y ago1 watchersCompare

[ Source](https://github.com/ydaood/laravelCapsuleCRM)[ Packagist](https://packagist.org/packages/laravel_crm/capsulecrm)[ RSS](/packages/laravel-crm-capsulecrm/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/f0f436283c8d01cfe89e629b03a24cc44110b55838f72bf05712d1ef7ae9b61a/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c5f63726d2f63617073756c6563726d2f76)](//packagist.org/packages/laravel_crm/capsulecrm) [![Total Downloads](https://camo.githubusercontent.com/2c42c0b512044dcfe3e7447195f4609ffef2e5dcb1e72df2ea2e9f9b87541005/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c5f63726d2f63617073756c6563726d2f646f776e6c6f616473)](//packagist.org/packages/laravel_crm/capsulecrm) [![Latest Unstable Version](https://camo.githubusercontent.com/79d9a15ad80118f3fd4bc8879bf1ab7e979398473c6200733bcf4d23428c05cf/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c5f63726d2f63617073756c6563726d2f762f756e737461626c65)](//packagist.org/packages/laravel_crm/capsulecrm) [![License](https://camo.githubusercontent.com/af56ce48659fbb164e73d6c0092412b79ff8fb3c2b1849678d5f77477273d7fa/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c5f63726d2f63617073756c6563726d2f6c6963656e7365)](//packagist.org/packages/laravel_crm/capsulecrm)

laravelCapsuleCRM
=================

[](#laravelcapsulecrm)

### Agenda

[](#agenda)

- Intallation
- Configuration
- Usage

### Installation

[](#installation)

- Install from composer

```
composer require laravel_crm/capsulecrm
```

- Add Service Provider in `config/app.php` add service provider class

```
'providers' => [
      CapsuleCRM\CapsuleServiceProvider::class,
];
```

- And add alias in `config/app.php` in `aliases` array add

```
'aliases' => [
      'CapsuleCRM'=>CapsuleCRM\Facades\CapsuleCRM::class,
  ];
```

- Publish config file by

```
php artisan vendor:publish --tag=capsuleCRM --force
```

### Configuration

[](#configuration)

- Add in `.env` file three keys of capsulecrm :
    - `CAPSULECRM_TOKEN` get it from capsule `My Preferences` -&gt; `API Authentication Tokens`-&gt;`Personal Access Tokens`
    - `CAPSULECRM_APP_NAME`
    - `CAPSULECRM_BASE_URI` default is `https://api.capsulecrm.com/api/v2/`

### Usage

[](#usage)

Common usage :

```
CapsuleCRM::{entity name}()
```

Example :

```
CapsuleCRM::party()
```

- Party: Parties represent the People and Organisations on your Capsule account. His Object is :

```
CapsuleCRM::party();
```

for crud operations :

1. Create new account :

```
$data = [
'name' => 'youssef daood',
'email' => 'ydaood@arkdev.net',
'tags' => ['register','subscribe']
];
CapsuleCRM::party()->create($data);
```

2. Resgister account:

```
$data = [
 'name' => 'youssef daood',
 'email' => 'ydaood@arkdev.net'
 ];
 $tag = 'subscribe';
CapsuleCRM::party()->register($data, $tag);
```

3. Update account:

```
$id = 1; // id of capsule
$data = [
'name' => 'youssef'
];
CapsuleCRM::party()->update($id, $data);
```

4. validateUniqueEmail:

```
$email = 'ydaood@arkdev.net';
CapsuleCRM::party()->validateUniqueEmail($email);
```

5. Search

```
$filter = 'youssef';
CapsuleCRM::party()->search($filter);
```

6. Fetch one party

```
$party_id=123456;
$party = CapsuleCRM::party()->fetch($party_id);
```

7. Get all person objects for a party

```
$party_id=123456;
$people = CapsuleCRM::party()->people($party_id);
```

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 94.9% 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

Unknown

Total

1

Last Release

3003d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/34000193?v=4)[ydaood](/maintainers/ydaood)[@ydaood](https://github.com/ydaood)

---

Top Contributors

[![ydaood](https://avatars.githubusercontent.com/u/34000193?v=4)](https://github.com/ydaood "ydaood (37 commits)")[![alex-french](https://avatars.githubusercontent.com/u/13569204?v=4)](https://github.com/alex-french "alex-french (1 commits)")[![Mrldavies](https://avatars.githubusercontent.com/u/6716362?v=4)](https://github.com/Mrldavies "Mrldavies (1 commits)")

---

Tags

laravelcrmlaravel crmcapsulecapsulecrmlaravelcrmcapsule crm

### Embed Badge

![Health badge](/badges/laravel-crm-capsulecrm/health.svg)

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

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M952](/packages/statamic-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[venturedrake/laravel-crm

A free open source CRM built as a package for laravel projects

42010.0k](/packages/venturedrake-laravel-crm)[moe-mizrak/laravel-openrouter

Laravel package for OpenRouter (A unified interface for LLMs)

154177.9k2](/packages/moe-mizrak-laravel-openrouter)[flat3/lodata

OData v4.01 Producer for Laravel

99351.7k](/packages/flat3-lodata)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)

PHPackages © 2026

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