PHPackages                             tomatophp/filament-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. tomatophp/filament-notes

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

tomatophp/filament-notes
========================

Add Sticky Notes to your FilamentPHP dashboard with tons of options and style

v1.0.20(7mo ago)434.4k↓33.3%10[1 issues](https://github.com/tomatophp/filament-notes/issues)MITPHPPHP ^8.1|^8.2

Since Jul 21Pushed 7mo ago1 watchersCompare

[ Source](https://github.com/tomatophp/filament-notes)[ Packagist](https://packagist.org/packages/tomatophp/filament-notes)[ GitHub Sponsors](https://github.com/3x1io)[ RSS](/packages/tomatophp-filament-notes/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (4)Versions (22)Used By (0)

[![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/3x1io-tomato-notes.jpg)](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/3x1io-tomato-notes.jpg)

Filament Sticky Notes
=====================

[](#filament-sticky-notes)

[![Latest Stable Version](https://camo.githubusercontent.com/c95a4ec9519681b9fc6a4da50d250bd7286d7512e71b83b0b3fd1cd30c824836/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6e6f7465732f76657273696f6e2e737667)](https://packagist.org/packages/tomatophp/filament-notes)[![License](https://camo.githubusercontent.com/be9baf5f107c505e080c0b9c717e401c4450da8afc44dd469b124c9551132294/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6e6f7465732f6c6963656e73652e737667)](https://packagist.org/packages/tomatophp/filament-notes)[![Downloads](https://camo.githubusercontent.com/4abf13c13903e98d9bbba3e2d6dfca85876454c9ac5828b383ea309336c33b43/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6e6f7465732f642f746f74616c2e737667)](https://packagist.org/packages/tomatophp/filament-notes)

Add Sticky Notes to your FilamentPHP dashboard with tons of options and style

**NOTE** please make sure you have `SQLite3` ex for PHP to make sure that Icons will be cached and work.

Screenshots
-----------

[](#screenshots)

[![List](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/list.png)](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/list.png)[![Create General](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/create-general.png)](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/create-general.png)[![Create Style](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/create-style.png)](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/create-style.png)[![View](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/view.png)](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/view.png)[![Widget](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/widget.png)](https://raw.githubusercontent.com/tomatophp/filament-notes/master/arts/widget.png)

Features
--------

[](#features)

- Notes Resource
- Notes Style
- Pined Notes
- Notes Background
- Notes Font Color
- Notes Border Color
- Notes Font Widget
- Notes Widget
- Notes Widget Limit
- Public/Private Notes
- Notes Groups
- Notes Status
- Notes To Notifications
- Share Notes With Public Link
- Share Notes With Selected User
- Notes CheckLists
- Notes Reminders
- Notes Font Family
- Attach Notes To Models
- Notes Templates

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

[](#installation)

```
composer require tomatophp/filament-notes
```

after install your package please run this command

```
php artisan filament-notes:install
```

Finally reigster the plugin on `/app/Providers/Filament/AdminPanelProvider.php`

```
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make())
```

Use Widget
----------

[](#use-widget)

you can use it as a resource or you can use it as a widget by just register a widget on your panel provider like this

```
$panel->widgets([
    \TomatoPHP\FilamentNotes\Filament\Widgets\NotesWidget::class
])
```

Use Livewire Component
----------------------

[](#use-livewire-component)

you can use selected note anywhere using livewire component

```

```

Use Groups &amp; Status
-----------------------

[](#use-groups--status)

to use this feature you need to install [filament-types](https://www.github.com/tomatophp/filament-types) or use this command

```
composer require tomatophp/filament-types
```

than you can use this feature by add this methods to the plugin

```
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make()
    ->useStatus()
    ->useGroups()
)
```

Use Convert Note To Notification
--------------------------------

[](#use-convert-note-to-notification)

to use this feature you need to install [filament-alerts](https://www.github.com/tomatophp/filament-alerts) or use this command

```
composer require tomatophp/filament-alerts
```

then you can use this feature by adding this method to the plugin

```
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make()
    ->useNotification()
)
```

Use Share Note With Public Link
-------------------------------

[](#use-share-note-with-public-link)

you can generate a public link and share it with others by allowing this feature on your provider

```
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make()
    ->useShareLink()
)
```

Use User Access Permissions
---------------------------

[](#use-user-access-permissions)

you can use this feature to allow only selected users to access the notes by allowing this feature on your provider

```
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make()
    ->useUserAccess()
)
```

Use Checklist
-------------

[](#use-checklist)

you can use this feature to add a checklist to your notes by allowing this feature on your provider

```
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make()
    ->useChecklist()
)
```

Customize Note Resource Icon
----------------------------

[](#customize-note-resource-icon)

you can customize the note resource icon by adding this method to the plugin

```
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make()
    ->navigationIcon('heroicon-o-presentation-chart-line')
)
```

Publish Assets
--------------

[](#publish-assets)

you can publish config file by use this command

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

you can publish views file by use this command

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

you can publish languages file by use this command

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

you can publish migrations file by use this command

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

Other Filament Packages
-----------------------

[](#other-filament-packages)

Checkout our [Awesome TomatoPHP](https://github.com/tomatophp/awesome)

###  Health Score

48

—

FairBetter than 94% of packages

Maintenance64

Regular maintenance activity

Popularity36

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 78.6% 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 ~22 days

Recently: every ~98 days

Total

21

Last Release

221d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (33 commits)")[![AzizEmir](https://avatars.githubusercontent.com/u/101357256?v=4)](https://github.com/AzizEmir "AzizEmir (2 commits)")[![edeoliv](https://avatars.githubusercontent.com/u/76831154?v=4)](https://github.com/edeoliv "edeoliv (2 commits)")[![husseinzaher](https://avatars.githubusercontent.com/u/24205592?v=4)](https://github.com/husseinzaher "husseinzaher (2 commits)")[![OccTherapist](https://avatars.githubusercontent.com/u/28587659?v=4)](https://github.com/OccTherapist "OccTherapist (2 commits)")[![zaher-at-areeb](https://avatars.githubusercontent.com/u/127883435?v=4)](https://github.com/zaher-at-areeb "zaher-at-areeb (1 commits)")

---

Tags

filamentfilament-pluginnotessticky-notestodotodolisttomatophplaravelwidgetnotesfilamentsticky

### Embed Badge

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

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

###  Alternatives

[tomatophp/filament-icons

Picker &amp; Table Column &amp; Icons Provider for FilamentPHP

3598.2k13](/packages/tomatophp-filament-icons)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)[tomatophp/filament-media-manager

Manage your media files using spatie media library with easy to use GUI for FilamentPHP

14543.9k3](/packages/tomatophp-filament-media-manager)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[asosick/filament-layout-manager

Allow users to create &amp; customize their own FilamentPHP pages composed of Livewire components

5718.8k2](/packages/asosick-filament-layout-manager)[tomatophp/filament-simple-theme

A simple theme for FilamentPHP with custom user menu in sidebar

146.6k](/packages/tomatophp-filament-simple-theme)

PHPackages © 2026

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