PHPackages                             subham/filament-quick-notes - 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. subham/filament-quick-notes

ActiveLibrary

subham/filament-quick-notes
===========================

This is my package filament-quick-notes

3.0.1(3d ago)02MITPHP ^8.1

Since Jul 7Compare

[ Source](https://github.com/subhamsharmaa/filament-quick-notes)[ Packagist](https://packagist.org/packages/subham/filament-quick-notes)[ Docs](https://github.com/subham/filament-quick-notes)[ RSS](/packages/subham-filament-quick-notes/feed)WikiDiscussions Synced today

READMEChangelog (1)Dependencies (8)Versions (3)Used By (0)

Filament Quick Notes
====================

[](#filament-quick-notes)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2c6ec62b71f78510b9ed834ef97c0847c4bf614ac7695724f1fc4c4ced805676/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73756268616d2f66696c616d656e742d717569636b2d6e6f7465732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/subham/filament-quick-notes)[![GitHub Tests Action Status](https://camo.githubusercontent.com/e9ce27e891ae1bd82e7884b03813def98ef683189cd3b1d0bb1a571c18680f20/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f73756268616d2f66696c616d656e742d717569636b2d6e6f7465732f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/subham/filament-quick-notes/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/92c72aa086d68883345d7442d81c2d113df417302060c86fa233e6b6169830f3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f73756268616d2f66696c616d656e742d717569636b2d6e6f7465732f6669782d7068702d636f64652d7374796c696e672e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/subham/filament-quick-notes/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/728e095210a12dbe3ee78d801423ff55537cea4c9e3da4fdd8a333d4f21ffafd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73756268616d2f66696c616d656e742d717569636b2d6e6f7465732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/subham/filament-quick-notes)

Filament Quick Notes adds user-owned quick notes to your Filament panel. Users can add a note from a floating action anywhere in the panel, then manage their own notes from a lightweight Livewire page.

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

[](#installation)

You can install the package via composer:

```
composer require subham/filament-quick-notes
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="filament-quick-notes-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-quick-notes-config"
```

This is the contents of the published config file:

```
return [
    'page' => [
        'enabled' => true,
        'slug' => 'quick-notes',
        'navigation_label' => 'Quick Notes',
        'navigation_group' => null,
        'navigation_icon' => 'heroicon-o-pencil-square',
        'navigation_sort' => null,
        'model_label' => 'quick note',
        'plural_model_label' => 'quick notes',
    ],

    'table_name' => 'quick_notes',

    'user' => [
        'foreign_key' => 'user_id',
        'model' => config('auth.providers.users.model', App\Models\User::class),
    ],

    'floating_action' => [
        'enabled' => true,
        'render_hook' => 'body.end',
        'label' => 'Add note',
        'icon' => 'heroicon-o-pencil-square',
    ],

    'dashboard_widget' => [
        'enabled' => false,
        'show' => 'pinned',
        'heading' => 'Quick Notes',
        'view_all_label' => 'View all',
        'view_all_icon' => 'heroicon-m-arrow-top-right-on-square',
        'records_per_page' => 5,
        'sort' => 1,
    ],

    'fields' => [
        'title' => [
            'enabled' => true,
            'required' => false,
            'max_length' => 255,
        ],
        'body' => [
            'required' => true,
            'max_length' => 5000,
            'rows' => 6,
        ],
        'color' => [
            'enabled' => false,
            'options' => [
                'gray' => 'Gray',
                'blue' => 'Blue',
                'green' => 'Green',
                'yellow' => 'Yellow',
                'red' => 'Red',
                'purple' => 'Purple',
            ],
            'default' => 'gray',
        ],
        'pinned' => [
            'enabled' => true,
            'default' => false,
        ],
    ],
];
```

Usage
-----

[](#usage)

Register the plugin in your Filament panel provider:

```
use Subham\FilamentQuickNotes\FilamentQuickNotesPlugin;

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

After registration, a floating `Add note` action appears in the panel and a configurable `Quick Notes` page appears in navigation. Notes are scoped to the current Filament authenticated user through the configured user foreign key.

You can move the quick-add action by changing `floating_action.render_hook`. Short names like `body.end`, `topbar.end`, and `user-menu.before` are supported, or you may pass a raw Filament render hook string such as `panels::body.end`.

Notes are listed newest first. The dashboard table widget is opt-in with `dashboard_widget.enabled`; set `dashboard_widget.show` to `all`, `pinned`, or `none`. Color is disabled by default because most quick-note flows do not need it, but it can be enabled when users want simple categorization.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

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

[](#security-vulnerabilities)

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

Credits
-------

[](#credits)

- [Subham Sharma](https://github.com/subhamsharmaa)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance99

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

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

Total

3

Last Release

3d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6d7e748c8040eaea80037de84fdf6bfb16fde753eb81cf08ba85d1b42c58515d?d=identicon)[ssuvam-dev](/maintainers/ssuvam-dev)

---

Tags

laravelfilamentphpsubhamfilament-quick-notes

###  Code Quality

TestsPest

Static AnalysisPHPStan

### Embed Badge

![Health badge](/badges/subham-filament-quick-notes/health.svg)

```
[![Health](https://phpackages.com/badges/subham-filament-quick-notes/health.svg)](https://phpackages.com/packages/subham-filament-quick-notes)
```

###  Alternatives

[backstage/mails

View logged mails and events in a beautiful Filament UI.

16121.5k](/packages/backstage-mails)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.8k](/packages/rawilk-profile-filament-plugin)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6649.5k1](/packages/marcelweidum-filament-passkeys)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)

PHPackages © 2026

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