Notable Laravel Notes Package | Notable | Mohamed Said      [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://msaied.com) [ Home ](https://msaied.com) [ Projects ](https://msaied.com/projects) [ Articles  ](https://msaied.com/articles) [ Certificates ](https://msaied.com/certificates) [ Contact ](https://msaied.com#contact-section) 

       [  ](https://github.com/EG-Mohamed)       

 [ Home ](https://msaied.com) [ Projects ](https://msaied.com/projects) [ Articles ](https://msaied.com/articles) [ Certificates ](https://msaied.com/certificates) [ Contact ](https://msaied.com#contact-section) 

 [home](https://msaied.com) / [articles](https://msaied.com/articles) / Notable: A Laravel Notes Package for Eloquent 

  ![Notable: A Laravel Notes Package for Eloquent](https://cdn.msaied.com/29/01KT7MCCMPZQ59D2E4B5H01G2A.jpg)

 Laravel PHP Open Source Notable Laravel Package Eloquent Notes 

Notable: A Laravel Notes Package for Eloquent
=============================================

 3 Jun 2026  2 min read 

Notable Laravel Package: Add Notes to Any Eloquent Model
========================================================

**GitHub Repository:** 

Introduction
------------

Notable is a simple and powerful Laravel package that allows you to attach notes to any Eloquent model using polymorphic relationships.

It is useful for applications that need internal comments, admin notes, activity logs, support ticket updates, audit notes, customer feedback, or any type of text annotation connected to a model.

Instead of building a custom notes system for every model, Notable gives you a reusable trait-based solution that works with users, orders, invoices, tickets, products, bookings, and more.

Why Use Notable?
----------------

Many Laravel applications need a way to store extra information about records. For example, an admin may need to leave a note on a customer account, a support agent may need to add updates to a ticket, or a staff member may need to track changes on an order.

Notable solves this by giving you a clean and flexible way to attach notes to any model without duplicating database tables or logic.

Key Features
------------

- Attach notes to any Eloquent model
- Polymorphic relationships for flexible model support
- Optional creator tracking for each note
- Creator tracking also supports polymorphic models
- Automatic `created_at` and `updated_at` timestamps
- Simple trait-based integration
- Useful query scopes for filtering notes
- Search notes by text content
- Retrieve notes by date, creator, or time range
- Configurable table name
- Built for modern Laravel applications
- Ideal for admin panels, CRMs, support systems, and internal tools

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

Install the package using Composer:

```bash
composer require eg-mohamed/notable

```

Publish and run the migrations:

```bash
php artisan vendor:publish --tag=notable-migrations
php artisan migrate

```

Optionally, publish the configuration file:

```bash
php artisan vendor:publish --tag=notable-config

```

Quick Start
-----------

### 1. Add the Trait to Your Model

```php
