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

ActiveLibrary

sormagec/nova-resource-notes
============================

A Laravel Nova Resource Note.

v1.6(6y ago)0984MITVuePHP &gt;=7.1.0

Since Jan 20Pushed 6y agoCompare

[ Source](https://github.com/bsormagec/nova-resource-notes)[ Packagist](https://packagist.org/packages/sormagec/nova-resource-notes)[ RSS](/packages/sormagec-nova-resource-notes/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (1)Versions (8)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:

```
