PHPackages                             trae/esign-module - 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. [PDF &amp; Document Generation](/categories/documents)
4. /
5. trae/esign-module

ActiveLibrary[PDF &amp; Document Generation](/categories/documents)

trae/esign-module
=================

A seamless E-Sign integration module for Laravel and Filament.

v1.0.0(3mo ago)02MITBladePHP ^8.2

Since Mar 15Pushed 3mo agoCompare

[ Source](https://github.com/MedjadderAymen/esign-module)[ Packagist](https://packagist.org/packages/trae/esign-module)[ Docs](https://github.com/trae-ai/esign-module)[ RSS](/packages/trae-esign-module/feed)WikiDiscussions master Synced 3w ago

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

&lt;&lt;&lt;&lt;&lt;&lt;&lt; HEAD

Trae E-Sign Module
==================

[](#trae-e-sign-module)

A seamless E-Sign integration module for Laravel and Filament, allowing you to easily add document signing capabilities (drawing and scanning signatures) to your existing Laravel projects.

Features
--------

[](#features)

- **Digital Signatures**: Draw or upload scanned signatures.
- **Document Management**: Upload, manage, and delete documents.
- **Document Signing**: Seamlessly sign PDF documents using stored signatures.
- **Filament Integration**: Includes ready-to-use Filament resources for Documents and Signatures.
- **Livewire Components**: Provides interactive UI components for signature creation and document signing.

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11.0+
- Livewire 3.0+
- Filament 3.0+ (optional, for admin panel)

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

[](#installation)

### Local Development / Testing

[](#local-development--testing)

To use this package locally in another Laravel project (e.g., your `cmms` project) before publishing it to Packagist:

1. Add a repository definition to your project's `composer.json`:

```
"repositories": [
    {
        "type": "path",
        "url": "../esgin_module",
        "options": {
            "symlink": true
        }
    }
]
```

2. Require the package:

```
composer require trae/esign-module @dev
```

### Via Composer (Once Published)

[](#via-composer-once-published)

You can install the package via composer:

```
composer require trae/esign-module
```

### 1. Publish Assets and Migrations

[](#1-publish-assets-and-migrations)

Publish the database migrations and optionally the views:

```
php artisan vendor:publish --tag="esign-migrations"
php artisan vendor:publish --tag="esign-views"
```

### 2. Run Migrations

[](#2-run-migrations)

Run the migrations to create the `signatures` and `documents` tables:

```
php artisan migrate
```

Usage
-----

[](#usage)

### Filament Admin Panel Integration

[](#filament-admin-panel-integration)

To use the E-Sign module within your Filament admin panel, register the plugin in your `PanelProvider` (e.g., `app/Providers/Filament/AdminPanelProvider.php`):

```
use Trae\ESign\Filament\ESignPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->plugin(ESignPlugin::make());
}
```

### Frontend Integration (Livewire)

[](#frontend-integration-livewire)

The module provides several Livewire components that you can include in your blade views:

- `@livewire('esign::create-signature')`: UI for creating a new signature.
- `@livewire('esign::manage-signatures')`: UI for listing and managing user signatures.
- `@livewire('esign::upload-document')`: UI for uploading a new document to be signed.
- `@livewire('esign::sign-document', ['document' => $document])`: UI for signing a specific document.

**Example: Adding the signature creator to a page**

```

            @livewire('esign::create-signature')

```

### Routes

[](#routes)

The package automatically registers the following routes under the `web`, `auth`, and `verified` middleware:

- `esign/signatures/create` (name: `esign.signatures.create`)
- `esign/documents/create` (name: `esign.documents.create`)
- `esign/documents/{document}/sign` (name: `esign.documents.sign`)
- `esign/documents/{document}/download` (name: `esign.documents.download`)
- `esign/documents/{document}/view` (name: `esign.documents.view`)

Configuration
-------------

[](#configuration)

By default, the package assumes your User model is `App\Models\User` and the table is `users`. If you use a different configuration, the package automatically uses Laravel's auth provider configuration (`config('auth.providers.users.model')`).

Backward Compatibility &amp; Migrations
---------------------------------------

[](#backward-compatibility--migrations)

If you are migrating from the local `cmms` esign project to this module:

1. **Remove local files**: Delete the local `App\Models\Signature`, `App\Models\Document`, Livewire components, and Filament resources from your main application.
2. **Database**: The table structures remain identical. If you already have the tables, you do not need to run the module's migrations. Ensure you use the `Trae\ESign\Models\Document` and `Signature` models in your codebase instead of the local ones.

License
-------

[](#license)

The MIT License (MIT).
======================

[](#the-mit-license-mit)

esign-module
============

[](#esign-module)

> > > > > > > a902b0a5cdb2f6cbba45eff33c1c0478a37db132

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance81

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

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

99d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4bda1cb75717bb7c96b50e3abd43772ab5ffdec6db5497ed1e3923df8167a8ed?d=identicon)[MedjadderAymen](/maintainers/MedjadderAymen)

---

Top Contributors

[![AimenMedjadder](https://avatars.githubusercontent.com/u/101826077?v=4)](https://github.com/AimenMedjadder "AimenMedjadder (2 commits)")

---

Tags

laravelpdfsignaturefilamentesign

### Embed Badge

![Health badge](/badges/trae-esign-module/health.svg)

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

###  Alternatives

[a2insights/filament-saas

Filament Saas for A2Insights

171.5k](/packages/a2insights-filament-saas)

PHPackages © 2026

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