PHPackages                             digitalcloud/nova-resource-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. digitalcloud/nova-resource-notes

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

digitalcloud/nova-resource-notes
================================

A Laravel Nova Resource Note.

v1.4(7y ago)1723.2k14[6 issues](https://github.com/DigitalCloud/nova-resource-notes/issues)[2 PRs](https://github.com/DigitalCloud/nova-resource-notes/pulls)MITVuePHP &gt;=7.1.0

Since Jan 20Pushed 4y ago4 watchersCompare

[ Source](https://github.com/DigitalCloud/nova-resource-notes)[ Packagist](https://packagist.org/packages/digitalcloud/nova-resource-notes)[ RSS](/packages/digitalcloud-nova-resource-notes/feed)WikiDiscussions master Synced 5d ago

READMEChangelog (5)Dependencies (1)Versions (7)Used By (0)

Nova Resource Notes
===================

[](#nova-resource-notes)

This package provides a `Notes` field, which allow you to add and view notes for nova resource.

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

[](#installation)

You can install the package via composer:

```
composer require digitalcloud/nova-resource-notes
```

Note that, this package depend on `digitalcloud/laravel-model-notes` (), so you need to configure it before start using this package.

You must add `HasNotes` trait to the resource model.

```
use DigitalCloud\ModelNotes\HasNotes;

class YourEloquentModel extends Model
{
    use HasNotes;
}
```

Usage
-----

[](#usage)

In your nova resource add the `Notes` field:

```
