Laravel Packages

Add Notes Functionality to Eloquent Models With the Notable Package

Published
Add Notes Functionality to Eloquent Models With the Notable Package image

Notable is a Laravel package that adds polymorphic note functionality to any Eloquent model. It allows you to attach notes/comments to models with creator tracking, timestamps, and powerful query scopes.

This package is helpful for any note-taking features you might need on a model, or for tools like auditing logs and user feedback. It includes powerful query scopes, and you can easily add note support to a model using the HasNotables trait:

class SupportTicket extends Model
{
use HasNotables;
}
 
// Customer adds note
$ticket->addNote('Still experiencing the issue', $customer);
 
// Support agent responds
$ticket->addNote('Investigating the problem', $agent);
 
// Get conversation history
$conversation = $ticket->getNotesWithCreator();
 
$ticket->getNotesToday();
$ticket->getNotesThisWeek();
$ticket->getNotesThisMonth();
$ticket->getNotesInRange('2024-01-01', '2024-12-31');
$ticket->searchNotes('error');

Main Features

  • Polymorphic Relationships - Attach notes to any Eloquent model
  • Creator Tracking - Track who created each note (also polymorphic!)
  • Timestamps - Automatic created_at and updated_at tracking
  • Query Scopes - Powerful query methods for filtering notes
  • Configurable - Customize table names through config
  • Easy Integration - Simple trait-based implementation
  • Laravel 10+ Ready - Built for modern Laravel applications

💻 You can get started with this package on GitHub: EG-Mohamed/Notable.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article